인증된 AgentReady.md 증명서
발급일 sig: 5d3f788eb9958edc 검증 →

분석된 URL

https://www.cloudflare.com/

다른 URL 분석

AI-Ready 점수

55 / D

미흡

/ 100

토큰 절감량

HTML 토큰 432.945
Markdown 토큰 2402
절감 99%

점수 상세

시맨틱 HTML 47/100
콘텐츠 효율성 51/100
AI 발견 가능성 45/100
구조화 데이터 70/100
접근성 75/100

신흥 프로토콜

3개 중 0개 감지

AI 에이전트가 찾는 well-known 엔드포인트. 감지되면 에이전트가 서비스를 자동으로 발견하고 연결할 수 있습니다.

  • OAuth Discovery RFC 8414
    /.well-known/oauth-authorization-server
  • MCP Server Card Anthropic
    /.well-known/mcp.json
  • A2A Agent Card Google
    /.well-known/agent.json

사이트에 llms.txt 파일이 없습니다. AI 에이전트가 사이트 구조를 이해하도록 돕는 새로운 표준입니다.

구현 방법

llmstxt.org 사양에 따라 /llms.txt 파일을 만드세요. 사이트 설명과 주요 페이지 링크를 포함하세요.

제목 구조에 문제가 있습니다 (레벨 건너뛰기 또는 다중 h1 태그). 깔끔한 계층 구조는 AI 에이전트가 콘텐츠 구성을 이해하는 데 도움을 줍니다.

구현 방법

페이지당 정확히 하나의 <h1>을 유지하고, 제목이 순차적 순서를 따르도록 하세요: h1 > h2 > h3. 레벨을 건너뛰지 마세요 (예: h1에서 바로 h3).

페이지의 실제 콘텐츠와 전체 HTML의 비율이 낮습니다. 페이지 무게의 상당 부분이 콘텐츠가 아닌 마크업, 스크립트, 스타일입니다.

구현 방법

CSS를 외부 스타일시트로 이동하고, 인라인 스타일을 제거하고, JavaScript를 최소화하고, HTML이 콘텐츠 구조에 집중하도록 하세요.

Content-Signal 지시어가 발견되지 않았습니다. 이는 AI 에이전트에게 콘텐츠 사용 방법(검색 색인, AI 입력, 훈련 데이터)을 알려줍니다. 권장 위치는 robots.txt입니다.

구현 방법

robots.txt에 Content-Signal을 추가하세요: User-agent: *\nContent-Signal: search=yes, ai-input=yes, ai-train=no. 마크다운 응답의 HTTP 헤더로도 추가할 수 있습니다.

{\n res.setHeader('Content-Signal', 'search=yes, ai-input=yes, ai-train=no');\n next();\n});\n\n// Fastify\nfastify.addHook('onSend', (request, reply, payload, done) => {\n reply.header('Content-Signal', 'search=yes, ai-input=yes, ai-train=no');\n done();\n});"}] }'>

Schema.org 구조화 데이터를 찾을 수 없습니다. JSON-LD는 AI 에이전트가 페이지에서 사실 기반의 구조화 정보를 추출하는 데 도움을 줍니다.

구현 방법

Schema.org 마크업이 포함된 <script type="application/ld+json"> 블록을 추가하세요. 적절한 유형을 사용하세요: 블로그 게시물에는 Article, 제품 페이지에는 Product, 회사 페이지에는 Organization.

사이트가 Markdown for Agents를 지원하지 않습니다. 이 Cloudflare 표준을 통해 AI 에이전트가 마크다운 형식으로 콘텐츠를 요청할 수 있으며, 토큰 사용량을 ~80% 줄일 수 있습니다.

구현 방법

다음 중 하나 이상을 구현하세요: (1) Accept: text/markdown에 마크다운 콘텐츠로 응답. (2) .md URL 제공 (예: /page.md). (3) <link rel="alternate" type="text/markdown"> 태그 추가. (4) 마크다운 발견을 위한 Link HTTP 헤더 추가.

{\n res.setHeader('Vary', 'Accept');\n res.setHeader('Link', '; rel=\"alternate\"; type=\"text/markdown\"');\n if ((req.headers.accept || '').includes('text/markdown')) {\n res.type('text/markdown; charset=utf-8');\n return res.send(renderMarkdown('page'));\n }\n res.render('page');\n});"},{"id":"fastify","label":"Fastify","language":"javascript","filename":"server.js","code":"// Mechanisms 1 + 4: content negotiation + Link header\nfastify.get('/page', async (req, reply) => {\n reply.header('Vary', 'Accept');\n reply.header('Link', '; rel=\"alternate\"; type=\"text/markdown\"');\n if ((req.headers.accept || '').includes('text/markdown')) {\n return reply.type('text/markdown; charset=utf-8').send(renderMarkdown('page'));\n }\n return reply.view('/page.ejs');\n});"},{"id":"nextjs","label":"Next.js","language":"typescript","filename":"app/page/route.ts","code":"// Next.js App Router — Route Handler returning Markdown\nimport { NextRequest } from 'next/server';\nimport { renderMarkdown } from '@/lib/md';\nexport async function GET(req: NextRequest) {\n const accept = req.headers.get('accept') || '';\n if (accept.includes('text/markdown')) {\n return new Response(await renderMarkdown('page'), {\n headers: {\n 'Content-Type': 'text/markdown; charset=utf-8',\n 'Vary': 'Accept',\n },\n });\n }\n // Fall through to the page component\n return new Response(null, { status: 404 });\n}"},{"id":"wordpress","label":"WordPress","language":"php","filename":"functions.php","code":"post_content));\n exit;\n});"},{"id":"static","label":"Hugo / Jekyll / Astro","language":"txt","filename":"static/page.md","code":"# Mechanism 2: serve .md alongside .html\n# Hugo: place page.md in /static/ — built unchanged\n# Jekyll: drop page.md in /assets/ — copied as-is\n# Astro: src/pages/page.md.ts that exports a GET returning markdown\n\n# Then advertise with mechanism 3 in :\n# "}] }'>

페이지가 <div> 요소에 크게 의존합니다. <section>, <nav>, <header>, <footer>, <aside> 같은 시맨틱 요소는 AI 에이전트에게 의미 있는 구조를 제공합니다.

구현 방법

범용 <div> 컨테이너를 적절한 시맨틱 요소로 교체하세요. 주제별 그룹에는 <section>, 내비게이션에는 <nav>, 페이지/섹션 헤더와 푸터에는 <header>/<footer>를 사용하세요.

페이지가 권장 크기보다 큽니다. 큰 페이지는 AI 에이전트에게 처리가 더 느리고 비용이 더 많이 듭니다.

구현 방법

HTML 최소화, 비핵심 스크립트 지연 로딩, 사용하지 않는 CSS 제거로 페이지 크기를 최적화하세요.

HTML 페이지가 권장 수준보다 무겁습니다. 큰 페이지는 AI 에이전트의 처리에 더 많은 시간과 토큰이 필요합니다.

구현 방법

사용하지 않는 코드 제거, HTML 최소화, 비핵심 콘텐츠 지연 로딩으로 HTML 크기를 줄이세요.

많은 요소에 인라인 스타일 속성이 있습니다. 이는 콘텐츠를 추출하는 AI 에이전트에게 잡음이 됩니다.

구현 방법

모든 인라인 스타일을 스타일시트의 CSS 클래스로 이동하세요. 많은 고유 스타일이 필요하면 Tailwind 같은 유틸리티 CSS 프레임워크를 사용하세요.

Markdown 토큰: 2402
## Our connectivity cloud is the best place to

-   connect your users, apps, clouds, and networks
-   protect everything you connect to the Internet
-   build and scale applications

Over 60 cloud services on one unified platform, uniquely powered by a global cloud network. We call it the connectivity cloud.

### Connect your workforce, AI agents, apps, and infrastructure

Cloudflare One is agile SASE. Take the fast path to safe AI adoption and zero trust access with our composable, programmable platform. Accelerate innovation with a SASE architecture unified by design.

## Speak to sales about SASE and workspace security.

First name: \*

Last name: \*

Phone: \*

Work email: \*

Company: \*

Choose an option or search here

Job level: \*

No options

Select your job level... \*

C-Level

VP

Director

Manager

Individual Contributor

Student

Other

Choose an option or search here

Job function: \*

No options

Select your job function... \*

IT

Security

Network

Infrastructure

Engineering

DevOps

Executive

Product

Finance/ Procurement

Sales / Marketing

Student

Press / Media

Other

Choose an option or search here

Country: \*

No options

Select your country...

Afghanistan

Aland Islands

Albania

Algeria

Andorra

Angola

Anguilla

Antarctica

Antigua and Barbuda

Argentina

Armenia

Aruba

Australia

Austria

Azerbaijan

Bahamas

Bahrain

Bangladesh

Barbados

Belarus

Belgium

Belize

Benin

Bermuda

Bhutan

Bolivia, Plurinational State of

Bonaire, Sint Eustatius and Saba

Bosnia and Herzegovina

Botswana

Bouvet Island

Brazil

British Indian Ocean Territory

Brunei Darussalam

Bulgaria

Burkina Faso

Burundi

Cambodia

Cameroon

Canada

Cape Verde

Cayman Islands

Central African Republic

Chad

Chile

China

Christmas Island

Cocos (Keeling) Islands

Colombia

Comoros

Congo, the Democratic Republic of the

Congo

Cook Islands

Costa Rica

Cote d'Ivoire

Croatia

Cuba

Curaçao

Cyprus

Czech Republic

Denmark

Djibouti

Dominica

Dominican Republic

Ecuador

Egypt

El Salvador

Equatorial Guinea

Eritrea

Estonia

Ethiopia

Falkland Islands (Malvinas)

Faroe Islands

Fiji

Finland

France

French Guiana

French Polynesia

French Southern Territories

Gabon

Gambia

Georgia

Germany

Ghana

Gibraltar

Greece

Greenland

Grenada

Guadeloupe

Guatemala

Guernsey

Guinea-Bissau

Guinea

Guyana

Haiti

Heard Island and McDonald Islands

Holy See (Vatican City State)

Honduras

Hong Kong

Hungary

Iceland

India

Indonesia

Iran

Iraq

Ireland

Isle of Man

Israel

Italy

Jamaica

Japan

Jersey

Jordan

Kazakhstan

Kenya

Kiribati

Kuwait

Kyrgyzstan

Lao People's Democratic Republic

Latvia

Lebanon

Lesotho

Liberia

Libya

Liechtenstein

Lithuania

Luxembourg

Macao

Macedonia, the former Yugoslav Republic of

Madagascar

Malawi

Malaysia

Maldives

Mali

Malta

Martinique

Mauritania

Mauritius

Mayotte

Mexico

Moldova, Republic of

Monaco

Mongolia

Montenegro

Montserrat

Morocco

Mozambique

Myanmar

Namibia

Nauru

Nepal

Netherlands

New Caledonia

New Zealand

Nicaragua

Niger

Nigeria

Niue

Norfolk Island

North Korea

Norway

Oman

Pakistan

Palestine

Panama

Papua New Guinea

Paraguay

Peru

Philippines

Pitcairn

Poland

Portugal

Puerto Rico

Qatar

Reunion

Romania

Russian Federation

Rwanda

Saint Barthélemy

Saint Helena, Ascension and Tristan da Cunha

Saint Kitts and Nevis

Saint Lucia

Saint Martin (French part)

Saint Pierre and Miquelon

Saint Vincent and the Grenadines

Samoa

San Marino

Sao Tome and Principe

Saudi Arabia

Senegal

Serbia

Seychelles

Sierra Leone

Singapore

Sint Maarten (Dutch part)

Slovakia

Slovenia

Solomon Islands

Somalia

South Africa

South Georgia and the South Sandwich Islands

South Korea

South Sudan

Spain

Sri Lanka

Sudan

Suriname

Svalbard and Jan Mayen

Swaziland

Sweden

Switzerland

Syria

Taiwan

Tajikistan

Tanzania, United Republic of

Thailand

Timor-Leste

Togo

Tokelau

Tonga

Trinidad and Tobago

Tunisia

Turkey

Turkmenistan

Turks and Caicos Islands

Tuvalu

Uganda

Ukraine

United Arab Emirates

United Kingdom

United States

Uruguay

Uzbekistan

Vanuatu

Venezuela, Bolivarian Republic of

Viet Nam

Virgin Islands, British

Wallis and Futuna

Western Sahara

Yemen

Zambia

Zimbabwe

 
In submitting this form, you agree to receive information from Cloudflare related to our products, events, and special offers. You can unsubscribe from such messages at any time. We never sell your data, and we value your privacy choices. Please see our [Privacy Policy](https://www.cloudflare.com/privacypolicy/) for information.

[Learn more](https://www.cloudflare.com/sase/)  

###### Related

### Protect and accelerate websites and AI-enabled apps

Use our industry-leading WAF, DDoS, and bot protection to protect your websites, apps, APIs, and AI workloads while accelerating performance with our ultra-fast CDN. Get started in 5 minutes.

###### Related

### Build and secure AI agents

Agents are the future of AI, and Cloudflare is the best place to get started. Use our agents framework and orchestration tools to run the models you choose and deliver new agents quickly. Build, deploy, and secure access for remote MCP servers so agents can access the features of your apps.

###### Related

## One global cloud network unlike any other

Only Cloudflare offers an intelligent, global cloud network built from the ground up for security, speed, and reliability.

60+

cloud services available globally

215B

cyber threats blocked each day

20%

of all websites are protected by Cloudflare

330+

cities in 125+ countries, including mainland China

## Leading companies rely on Cloudflare

#### Connect

#### Protect

#### Build

## How Cloudflare can help

 ![cloudflare-zero-trust](https://cf-assets.www.cloudflare.com/dzlvafdwdttg/8hc75nt6kXgLxbHJdnj4Y/a1eb609961866aac1f1ec5d403cd14cd/Type_solid_1.svg)

###### Modernize remote access

 ![innovation-intelligence](https://cf-assets.www.cloudflare.com/dzlvafdwdttg/1bFuuCltYhpEJ6GXurbDkM/d35e3a7906ad77973f8dc15f98783e0e/Type_solid__1__1.svg)

###### Secure generative and agentic AI

 ![Deploy Severless Code Icon](https://cf-assets.www.cloudflare.com/dzlvafdwdttg/SHl63Djc8njFxZGCHDXYV/e1242ffa9fe3ca46f2910cc822263a95/Type_solid_3.svg)

###### Deploy serverless code

[Deploy serverless code](https://www.cloudflare.com/developer-platform/products/workers/)  

Build serverless applications and deploy instantly across the globe for speed, reliability, and scale.

 ![Deploy AI on the Edge Icon](https://cf-assets.www.cloudflare.com/dzlvafdwdttg/3mVpWblZcy0dXxq9rz5OMy/1dbc0cb5e78db1978f56d27fa6e99de6/Type_solid__1__2.svg)

###### Deploy AI on the edge

 ![Stop DDoS attacks](https://cf-assets.www.cloudflare.com/dzlvafdwdttg/779orctICkHMB2JY8NLFyf/ca496015386d05622c4d510f41ab64a3/Type_outline_1.svg)

###### Stop DDoS attacks

[Stop DDoS attacks](https://www.cloudflare.com/network-services/products/magic-transit/)  

Protect public-facing subnets with Cloudflare’s massive 477 Tbps network capacity that absorbs and filters attacks.

 ![Block bot traffic](https://cf-assets.www.cloudflare.com/dzlvafdwdttg/3BLMrHo42tJUy8cNwOoxkk/8ed12ad035c5166bf426f16796a2b31c/Type_solid_2.svg)

###### Block bot traffic

[Block bot traffic](https://www.cloudflare.com/application-services/products/bot-management/)  

Stop bot attacks in real time by harnessing data from millions of websites protected by Cloudflare.

## News and resources

##### What's new

##### Insights

##### Library

##### Events

## Get started with the connectivity cloud

 ![Security Shield Protection Icon](https://cf-assets.www.cloudflare.com/dzlvafdwdttg/7CvNwSY8XCo90yNwqJkkiX/c476a3043f6bc66918b34c36e5d6533b/security-shield-protection-2.svg)

##### Get started for free

Get easy, instant access to Cloudflare security and performance services.

[Start for free](https://dash.cloudflare.com/sign-up/)  

 ![Constellation Icon](https://cf-assets.www.cloudflare.com/dzlvafdwdttg/3o96rYCOx6VOx7F316KwCx/b5d6c97da4994cf2588ed36fd82c0c20/Constellation.svg)

##### Need help choosing?

Get a personalized product recommendation for your specific needs.

[Find the right plan](https://www.cloudflare.com/about-your-website/)  

 ![Innovation Thinking Icon ](https://cf-assets.www.cloudflare.com/dzlvafdwdttg/1OnP5oJNO4uAH6f5So09bO/24f8e053ffa56a8099c8ba6a4325743e/innovation-thinking.svg)

##### Talk to an expert

Have questions or want to get a demo? Get in touch with one of our experts.

[Contact us](https://www.cloudflare.com/plans/enterprise/contact/)
Connect, protect, and build everywhere | Cloudflare

[Support](http://www.support.cloudflare.com/)

Languages

-   [English](https://www.cloudflare.com/)
-   [English (United Kingdom)](https://www.cloudflare.com/en-gb/)
-   [Deutsch](https://www.cloudflare.com/de-de/)
-   [Español (Latinoamérica)](https://www.cloudflare.com/es-la/)
-   [Español (España)](https://www.cloudflare.com/es-es/)
-   [Français](https://www.cloudflare.com/fr-fr/)
-   [Italiano](https://www.cloudflare.com/it-it/)
-   [日本語](https://www.cloudflare.com/ja-jp/)
-   [한국어](https://www.cloudflare.com/ko-kr/)
-   [Polski](https://www.cloudflare.com/pl-pl/)
-   [Português (Brasil)](https://www.cloudflare.com/pt-br/)
-   [Русский](https://www.cloudflare.com/ru-ru/)
-   [繁體中文](https://www.cloudflare.com/zh-tw/)
-   [简体中文](https://www.cloudflare.com/zh-cn/)

![Hero Takeover](https://cf-assets.www.cloudflare.com/dzlvafdwdttg/5B5shLB8bSKIyB9NJ6R1jz/87e7617be2c61603d46003cb3f1bd382/Hero-globe-bg-takeover-xxl.png)

# Connect, protect, and build everywhere

We make websites, apps, AI agents, and networks faster and more secure. Our agile SASE platform accelerates safe AI adoption, and our developer platform is the best place to build and run AI apps.

[Start for free](https://dash.cloudflare.com/sign-up)

[See pricing](https://www.cloudflare.com/plans/)

 ![Agents week 2026](https://cf-assets.www.cloudflare.com/dzlvafdwdttg/QNKyzAsE17944B8c3RsJR/088a2641e439d89acc5adee6871a66d9/agents-week-thumbnail.png)

###### Welcome to Agents Week 2026

[Explore the latest](https://www.cloudflare.com/agents-week/)  

 ![2026 Cloudflare Security Signals Report](https://cf-assets.www.cloudflare.com/dzlvafdwdttg/UG4KsLnFZA9vxvrhVAyID/f59f3f4ea150a83976297d4dcdc793de/Signals_report__1_.png)

###### New 2026 Security Signals Report

Six principles for autonomic resilience

[Download report](https://www.cloudflare.com/lp/security-signals-report/2026/)  

## Our connectivity cloud is the best place to

-   connect your users, apps, clouds, and networks
-   protect everything you connect to the Internet
-   build and scale applications

Over 60 cloud services on one unified platform, uniquely powered by a global cloud network. We call it the connectivity cloud.

### Connect your workforce, AI agents, apps, and infrastructure

Cloudflare One is agile SASE. Take the fast path to safe AI adoption and zero trust access with our composable, programmable platform. Accelerate innovation with a SASE architecture unified by design.

Contact sales

## Speak to sales about SASE and workspace security.

First name: \*

Last name: \*

Phone: \*

Work email: \*

Company: \*

Select your job level... \* C-Level VP Director Manager Individual Contributor Student Other

Choose an option or search here

 Job level: \*

No options

Select your job level... \*

C-Level

VP

Director

Manager

Individual Contributor

Student

Other

Select your job function... \* IT Security Network Infrastructure Engineering DevOps Executive Product Finance/ Procurement Sales / Marketing Student Press / Media Other

Choose an option or search here

 Job function: \*

No options

Select your job function... \*

IT

Security

Network

Infrastructure

Engineering

DevOps

Executive

Product

Finance/ Procurement

Sales / Marketing

Student

Press / Media

Other

Select your country... Afghanistan Aland Islands Albania Algeria Andorra Angola Anguilla Antarctica Antigua and Barbuda Argentina Armenia Aruba Australia Austria Azerbaijan Bahamas Bahrain Bangladesh Barbados Belarus Belgium Belize Benin Bermuda Bhutan Bolivia, Plurinational State of Bonaire, Sint Eustatius and Saba Bosnia and Herzegovina Botswana Bouvet Island Brazil British Indian Ocean Territory Brunei Darussalam Bulgaria Burkina Faso Burundi Cambodia Cameroon Canada Cape Verde Cayman Islands Central African Republic Chad Chile China Christmas Island Cocos (Keeling) Islands Colombia Comoros Congo, the Democratic Republic of the Congo Cook Islands Costa Rica Cote d'Ivoire Croatia Cuba Curaçao Cyprus Czech Republic Denmark Djibouti Dominica Dominican Republic Ecuador Egypt El Salvador Equatorial Guinea Eritrea Estonia Ethiopia Falkland Islands (Malvinas) Faroe Islands Fiji Finland France French Guiana French Polynesia French Southern Territories Gabon Gambia Georgia Germany Ghana Gibraltar Greece Greenland Grenada Guadeloupe Guatemala Guernsey Guinea-Bissau Guinea Guyana Haiti Heard Island and McDonald Islands Holy See (Vatican City State) Honduras Hong Kong Hungary Iceland India Indonesia Iran Iraq Ireland Isle of Man Israel Italy Jamaica Japan Jersey Jordan Kazakhstan Kenya Kiribati Kuwait Kyrgyzstan Lao People's Democratic Republic Latvia Lebanon Lesotho Liberia Libya Liechtenstein Lithuania Luxembourg Macao Macedonia, the former Yugoslav Republic of Madagascar Malawi Malaysia Maldives Mali Malta Martinique Mauritania Mauritius Mayotte Mexico Moldova, Republic of Monaco Mongolia Montenegro Montserrat Morocco Mozambique Myanmar Namibia Nauru Nepal Netherlands New Caledonia New Zealand Nicaragua Niger Nigeria Niue Norfolk Island North Korea Norway Oman Pakistan Palestine Panama Papua New Guinea Paraguay Peru Philippines Pitcairn Poland Portugal Puerto Rico Qatar Reunion Romania Russian Federation Rwanda Saint Barthélemy Saint Helena, Ascension and Tristan da Cunha Saint Kitts and Nevis Saint Lucia Saint Martin (French part) Saint Pierre and Miquelon Saint Vincent and the Grenadines Samoa San Marino Sao Tome and Principe Saudi Arabia Senegal Serbia Seychelles Sierra Leone Singapore Sint Maarten (Dutch part) Slovakia Slovenia Solomon Islands Somalia South Africa South Georgia and the South Sandwich Islands South Korea South Sudan Spain Sri Lanka Sudan Suriname Svalbard and Jan Mayen Swaziland Sweden Switzerland Syria Taiwan Tajikistan Tanzania, United Republic of Thailand Timor-Leste Togo Tokelau Tonga Trinidad and Tobago Tunisia Turkey Turkmenistan Turks and Caicos Islands Tuvalu Uganda Ukraine United Arab Emirates United Kingdom United States Uruguay Uzbekistan Vanuatu Venezuela, Bolivarian Republic of Viet Nam Virgin Islands, British Wallis and Futuna Western Sahara Yemen Zambia Zimbabwe

Choose an option or search here

 Country: \*

No options

Select your country...

Afghanistan

Aland Islands

Albania

Algeria

Andorra

Angola

Anguilla

Antarctica

Antigua and Barbuda

Argentina

Armenia

Aruba

Australia

Austria

Azerbaijan

Bahamas

Bahrain

Bangladesh

Barbados

Belarus

Belgium

Belize

Benin

Bermuda

Bhutan

Bolivia, Plurinational State of

Bonaire, Sint Eustatius and Saba

Bosnia and Herzegovina

Botswana

Bouvet Island

Brazil

British Indian Ocean Territory

Brunei Darussalam

Bulgaria

Burkina Faso

Burundi

Cambodia

Cameroon

Canada

Cape Verde

Cayman Islands

Central African Republic

Chad

Chile

China

Christmas Island

Cocos (Keeling) Islands

Colombia

Comoros

Congo, the Democratic Republic of the

Congo

Cook Islands

Costa Rica

Cote d'Ivoire

Croatia

Cuba

Curaçao

Cyprus

Czech Republic

Denmark

Djibouti

Dominica

Dominican Republic

Ecuador

Egypt

El Salvador

Equatorial Guinea

Eritrea

Estonia

Ethiopia

Falkland Islands (Malvinas)

Faroe Islands

Fiji

Finland

France

French Guiana

French Polynesia

French Southern Territories

Gabon

Gambia

Georgia

Germany

Ghana

Gibraltar

Greece

Greenland

Grenada

Guadeloupe

Guatemala

Guernsey

Guinea-Bissau

Guinea

Guyana

Haiti

Heard Island and McDonald Islands

Holy See (Vatican City State)

Honduras

Hong Kong

Hungary

Iceland

India

Indonesia

Iran

Iraq

Ireland

Isle of Man

Israel

Italy

Jamaica

Japan

Jersey

Jordan

Kazakhstan

Kenya

Kiribati

Kuwait

Kyrgyzstan

Lao People's Democratic Republic

Latvia

Lebanon

Lesotho

Liberia

Libya

Liechtenstein

Lithuania

Luxembourg

Macao

Macedonia, the former Yugoslav Republic of

Madagascar

Malawi

Malaysia

Maldives

Mali

Malta

Martinique

Mauritania

Mauritius

Mayotte

Mexico

Moldova, Republic of

Monaco

Mongolia

Montenegro

Montserrat

Morocco

Mozambique

Myanmar

Namibia

Nauru

Nepal

Netherlands

New Caledonia

New Zealand

Nicaragua

Niger

Nigeria

Niue

Norfolk Island

North Korea

Norway

Oman

Pakistan

Palestine

Panama

Papua New Guinea

Paraguay

Peru

Philippines

Pitcairn

Poland

Portugal

Puerto Rico

Qatar

Reunion

Romania

Russian Federation

Rwanda

Saint Barthélemy

Saint Helena, Ascension and Tristan da Cunha

Saint Kitts and Nevis

Saint Lucia

Saint Martin (French part)

Saint Pierre and Miquelon

Saint Vincent and the Grenadines

Samoa

San Marino

Sao Tome and Principe

Saudi Arabia

Senegal

Serbia

Seychelles

Sierra Leone

Singapore

Sint Maarten (Dutch part)

Slovakia

Slovenia

Solomon Islands

Somalia

South Africa

South Georgia and the South Sandwich Islands

South Korea

South Sudan

Spain

Sri Lanka

Sudan

Suriname

Svalbard and Jan Mayen

Swaziland

Sweden

Switzerland

Syria

Taiwan

Tajikistan

Tanzania, United Republic of

Thailand

Timor-Leste

Togo

Tokelau

Tonga

Trinidad and Tobago

Tunisia

Turkey

Turkmenistan

Turks and Caicos Islands

Tuvalu

Uganda

Ukraine

United Arab Emirates

United Kingdom

United States

Uruguay

Uzbekistan

Vanuatu

Venezuela, Bolivarian Republic of

Viet Nam

Virgin Islands, British

Wallis and Futuna

Western Sahara

Yemen

Zambia

Zimbabwe

 Yes - I want to stay in touch with Cloudflare to receive valuable content such as product news, blog updates, and more.

 \[Required\] Terms of Service - [view](https://www.cloudflare.com/terms/) \*

 \[Required\] Collection and Use of Personal Information - [view](https://www.cloudflare.com/privacypolicy/#2-information-we-collect-categories-of-data-subjects) \*

 \[Required\] Sharing of a limited amount of your Personal Information overseas - [view](https://www.cloudflare.com/gdpr/subprocessors/cloudflare-services/) \*

 \[Optional\] Sharing of a limited amount of your Personal Information to marketing third-parties - [view](https://www.cloudflare.com/privacypolicy/)

Contact us

## Thank You

Someone from Cloudflare will be in touch with you shortly.

 
In submitting this form, you agree to receive information from Cloudflare related to our products, events, and special offers. You can unsubscribe from such messages at any time. We never sell your data, and we value your privacy choices. Please see our [Privacy Policy](https://www.cloudflare.com/privacypolicy/) for information.

[Learn more](https://www.cloudflare.com/sase/)  

###### Related

[SASE demo hub](https://www.cloudflare.com/sase/demos/) [10-step SASE journey](https://www.cloudflare.com/lp/10-steps-sase-journey/)

### Protect and accelerate websites and AI-enabled apps

Use our industry-leading WAF, DDoS, and bot protection to protect your websites, apps, APIs, and AI workloads while accelerating performance with our ultra-fast CDN. Get started in 5 minutes.

[Start for free](https://dash.cloudflare.com/sign-up)

[Compare plans](https://www.cloudflare.com/plans/)  

###### Related

[Cloudflare named a Leader in Forrester Wave for WAF for 2025](https://www.cloudflare.com/lp/forrester-wave-waf-2025/)

### Build and secure AI agents

Agents are the future of AI, and Cloudflare is the best place to get started. Use our agents framework and orchestration tools to run the models you choose and deliver new agents quickly. Build, deploy, and secure access for remote MCP servers so agents can access the features of your apps.

[Start building now](https://www.cloudflare.com/developer-platform/)

[Developer docs](https://developers.cloudflare.com/)  

###### Related

[Build AI apps quickly](http://ai.cloudflare.com/) [Build AI Agents](https://agents.cloudflare.com/)

## One global cloud network unlike any other

Only Cloudflare offers an intelligent, global cloud network built from the ground up for security, speed, and reliability.

60+

cloud services available globally

215B

cyber threats blocked each day

20%

of all websites are protected by Cloudflare

330+

cities in 125+ countries, including mainland China

## Leading companies rely on Cloudflare

#### Connect

#### Protect

#### Build

### Connect users and apps securely

SASE keeps hybrid work productive everywhere, securing human and AI agent communications.

[Try it now](https://dash.cloudflare.com/sign-up/zero-trust)

[Learn more](https://www.cloudflare.com/sase/)  

![Discord logo](https://www.cloudflare.com/cdn-cgi/image/format=auto/https://cf-assets.www.cloudflare.com/v2/image/if1af5160h4hdbghmf28es104l/case-studies_logo_hp_discord.png)

"Discord is where the world builds relationships. Cloudflare helps us deliver on that mission, connecting our internal engineering team to the tools they need. With Cloudflare, we can rest easy knowing every request to our critical apps is evaluated for identity and context — a true Zero Trust approach."

Mark Smith

Director of Infrastructure, Discord

### Protect and accelerate websites

Place a global cloud network in front of websites, apps, and APIs to insulate users from Internet-borne threats and accelerate performance.

[Sign up for demo](https://www.cloudflare.com/product-demos/)

[Learn more](https://www.cloudflare.com/application-services/)  

 ![Zendesk logo](https://cf-assets.www.cloudflare.com/dzlvafdwdttg/1zapF3fByv7AKnNvEzRNSD/18fc817e0fcb42c967fdd5e4e7cb9e4c/zendesk-logo.png)

"Like Zendesk, innovation is in Cloudflare’s DNA — it mirrors our beautifully simple development ethos with the connectivity cloud, a powerful, yet simple-to-implement, end-to-end solution that does all the heavy lifting, so we don’t need to."

Nan Guo

Senior Vice President of Engineering, Zendesk

### Build and scale applications

The computing power, databases, storage, media, and AI inference you need to build without operational overhead.

[Learn more](https://workers.cloudflare.com/)

[View plans](https://workers.cloudflare.com/pricing)  

 ![Investec logo](https://cf-assets.www.cloudflare.com/dzlvafdwdttg/7iPsQ5S7YEhFkcRFqsof6/fb5313227265830842320a773b9b7ba8/Investec-logo.png)

"The Cloudflare Developer Platform and Workers are central to our ability to provide user-programmable functionality. It is just one example of how we leverage Cloudflare capabilities to enhance our technology and deliver value to our clients."

Christopher Naidoo

Head of Digital IT Operations, Investec

 ![Broadcom logo](https://cf-assets.www.cloudflare.com/dzlvafdwdttg/1YpsqECHBpbdKpFP1zGC4G/588de5f9c22dc26689a163d28ca8c837/Broadcom_-_logo.svg)

 ![Colgate-Palmolive logo](https://cf-assets.www.cloudflare.com/dzlvafdwdttg/4BCy1pz7aCpnp4o2DYbwwZ/beda767373ab0541b246839d5fb9f4e4/Colgate-Palmolive_-_logo.svg)

![Doordash logo](https://cf-assets.www.cloudflare.com/v2/image/dfo8jd6u8l66b4kf4fm0ibvh24/DoorDash_logo_color.svg)

 ![Garmin logo](https://cf-assets.www.cloudflare.com/dzlvafdwdttg/4scwZf1ISfZERoO0nWiPEA/d34652e183694387e5952a730aad2c32/Garmin_-_logo__1_.svg)

 ![National Cyber Security Centre logo](https://cf-assets.www.cloudflare.com/dzlvafdwdttg/3mvx0mLd1y3RLMyC4Qm72U/6b7460d2c7d0dc7ad157715d94f28903/NCSC_1.svg)

 ![Roche logo](https://cf-assets.www.cloudflare.com/dzlvafdwdttg/66HzTNSBXhN3pNtUrvXXbq/90a6442f818623ad95d4579307b034dc/Roche_id1Fa0CpTI_0_1.svg)

 ![Shopify logo](https://cf-assets.www.cloudflare.com/dzlvafdwdttg/2AbGls2Pe6K2LqCnIHVbvL/d8ea7efa6746c7fc9cee53b7e65834d7/Shopify_-_logo.svg)

 ![Sofi logo](https://cf-assets.www.cloudflare.com/dzlvafdwdttg/2JZuWDG4fTwdGFHLg4RyZh/2ac29c01f8e61fa6705a56874cb072a7/Sofi_-_logo.svg)

 ![US DHS logo](https://cf-assets.www.cloudflare.com/dzlvafdwdttg/5PW1WLd3bhgtAQC51m3K6V/dea89184c7380122d2700138e699e297/logo-wordmark-blue_1.svg)

 ![Thomson Reuters logo](https://cf-assets.www.cloudflare.com/dzlvafdwdttg/1iXuSJGPlohZBQ8role3gn/4e2b2a37de3e28fab326c6045f0b8461/Logo_1.svg)

 ![Broadcom logo](https://cf-assets.www.cloudflare.com/dzlvafdwdttg/1YpsqECHBpbdKpFP1zGC4G/588de5f9c22dc26689a163d28ca8c837/Broadcom_-_logo.svg)

 ![Colgate-Palmolive logo](https://cf-assets.www.cloudflare.com/dzlvafdwdttg/4BCy1pz7aCpnp4o2DYbwwZ/beda767373ab0541b246839d5fb9f4e4/Colgate-Palmolive_-_logo.svg)

![Doordash logo](https://cf-assets.www.cloudflare.com/v2/image/dfo8jd6u8l66b4kf4fm0ibvh24/DoorDash_logo_color.svg)

 ![Garmin logo](https://cf-assets.www.cloudflare.com/dzlvafdwdttg/4scwZf1ISfZERoO0nWiPEA/d34652e183694387e5952a730aad2c32/Garmin_-_logo__1_.svg)

 ![National Cyber Security Centre logo](https://cf-assets.www.cloudflare.com/dzlvafdwdttg/3mvx0mLd1y3RLMyC4Qm72U/6b7460d2c7d0dc7ad157715d94f28903/NCSC_1.svg)

 ![Roche logo](https://cf-assets.www.cloudflare.com/dzlvafdwdttg/66HzTNSBXhN3pNtUrvXXbq/90a6442f818623ad95d4579307b034dc/Roche_id1Fa0CpTI_0_1.svg)

 ![Shopify logo](https://cf-assets.www.cloudflare.com/dzlvafdwdttg/2AbGls2Pe6K2LqCnIHVbvL/d8ea7efa6746c7fc9cee53b7e65834d7/Shopify_-_logo.svg)

 ![Sofi logo](https://cf-assets.www.cloudflare.com/dzlvafdwdttg/2JZuWDG4fTwdGFHLg4RyZh/2ac29c01f8e61fa6705a56874cb072a7/Sofi_-_logo.svg)

 ![US DHS logo](https://cf-assets.www.cloudflare.com/dzlvafdwdttg/5PW1WLd3bhgtAQC51m3K6V/dea89184c7380122d2700138e699e297/logo-wordmark-blue_1.svg)

 ![Thomson Reuters logo](https://cf-assets.www.cloudflare.com/dzlvafdwdttg/1iXuSJGPlohZBQ8role3gn/4e2b2a37de3e28fab326c6045f0b8461/Logo_1.svg)

## How Cloudflare can help

 ![cloudflare-zero-trust](https://cf-assets.www.cloudflare.com/dzlvafdwdttg/8hc75nt6kXgLxbHJdnj4Y/a1eb609961866aac1f1ec5d403cd14cd/Type_solid_1.svg)

###### Modernize remote access

[Modernize remote access](https://www.cloudflare.com/sase/products/access/)  

Provide granular, least privilege access to internal applications and infrastructure.

 ![innovation-intelligence](https://cf-assets.www.cloudflare.com/dzlvafdwdttg/1bFuuCltYhpEJ6GXurbDkM/d35e3a7906ad77973f8dc15f98783e0e/Type_solid__1__1.svg)

###### Secure generative and agentic AI

[Secure generative and agentic AI](https://www.cloudflare.com/ai-security/)  

Enable safe AI adoption by securing workforce AI tools and public-facing applications.

 ![Deploy Severless Code Icon](https://cf-assets.www.cloudflare.com/dzlvafdwdttg/SHl63Djc8njFxZGCHDXYV/e1242ffa9fe3ca46f2910cc822263a95/Type_solid_3.svg)

###### Deploy serverless code

[Deploy serverless code](https://www.cloudflare.com/developer-platform/products/workers/)  

Build serverless applications and deploy instantly across the globe for speed, reliability, and scale.

 ![Deploy AI on the Edge Icon](https://cf-assets.www.cloudflare.com/dzlvafdwdttg/3mVpWblZcy0dXxq9rz5OMy/1dbc0cb5e78db1978f56d27fa6e99de6/Type_solid__1__2.svg)

###### Deploy AI on the edge

[Deploy AI on the edge](https://www.cloudflare.com/developer-platform/products/workers-ai/)  

Build and deploy ambitious AI apps everywhere to Cloudflare's global network.

 ![Stop DDoS attacks](https://cf-assets.www.cloudflare.com/dzlvafdwdttg/779orctICkHMB2JY8NLFyf/ca496015386d05622c4d510f41ab64a3/Type_outline_1.svg)

###### Stop DDoS attacks

[Stop DDoS attacks](https://www.cloudflare.com/network-services/products/magic-transit/)  

Protect public-facing subnets with Cloudflare’s massive 477 Tbps network capacity that absorbs and filters attacks.

 ![Block bot traffic](https://cf-assets.www.cloudflare.com/dzlvafdwdttg/3BLMrHo42tJUy8cNwOoxkk/8ed12ad035c5166bf426f16796a2b31c/Type_solid_2.svg)

###### Block bot traffic

[Block bot traffic](https://www.cloudflare.com/application-services/products/bot-management/)  

Stop bot attacks in real time by harnessing data from millions of websites protected by Cloudflare.

[Show more](https://www.cloudflare.com/resource-hub/?resourcetype=Solution+%26+Product+Guides)

## News and resources

##### What's new

##### Insights

##### Library

##### Events

 ![Pay per crawl](https://cf-assets.www.cloudflare.com/dzlvafdwdttg/5FzlGx8oeekggGYq5wTwfG/cade515fb39ed01f9466793934877b17/Press-releases-Thumbnail-1.png)

Press release

###### Cloudflare and GoDaddy partner to help enable an open agentic web

[Read](https://www.cloudflare.com/press/press-releases/2026/cloudflare-and-godaddy-partner-to-help-enable-an-open-agentic-web/)  

 ![Forrester Wave for Edge Development Platforms for 2026](https://cf-assets.www.cloudflare.com/dzlvafdwdttg/4iJzBRMF9qufSZ2AbWpcTX/94ee8b5ffa8002ae979ee979cdb50895/Product-update-Thumbnail-1.png)

Report

###### Cloudflare named a ‘Leader’ in Forrester Wave for Edge Development Platforms for 2026

[Read report](https://www.cloudflare.com/lp/forrester-wave-edp-2026/)  

![Thumbnail - Insight - Template 1 Lightbulb](https://www.cloudflare.com/cdn-cgi/image/format=auto/https://cf-assets.www.cloudflare.com/v2/image/qah4sakhoh4onb8r1b4vnav162/thumbnail_insights-1.png)

Report

###### 2026 Cloudflare Threat Report

[Read report](https://www.cloudflare.com/lp/threat-report-2026/)  

 ![Test Drive](https://cf-assets.www.cloudflare.com/dzlvafdwdttg/5Xv9FKPcd7u6bPz9A2KJrN/7d5bf5fc076c8d35bfbba2a73f2e9653/Virtual-workshop-Thumbnail-2.png)

Workshop

###### Attend a Test Drive workshop to get hands-on experience with Cloudflare products

[Register](https://www.cloudflare.com/lp/test-drive-request-info/)  

 ![Forrester Wave Email Security](https://cf-assets.www.cloudflare.com/dzlvafdwdttg/5FzlGx8oeekggGYq5wTwfG/cade515fb39ed01f9466793934877b17/Press-releases-Thumbnail-1.png)

Press release

###### Cloudflare strengthens content offering to AI companies with acquisition of Human Native

[Read report](https://www.cloudflare.com/press/press-releases/2026/cloudflare-strengthens-content-offering-to-ai-companies-with-acquisition-of-human-native/)  

 ![Cloudflare acquires Astro to accelerate the future of high-performance web development](https://cf-assets.www.cloudflare.com/dzlvafdwdttg/1md9HF80UDFu5OiEzBFIl9/2fd375ffe350f7c8014c0926666656c5/Press-releases-Thumbnail-2.png)

Press release

###### Cloudflare acquires Astro to accelerate the future of high-performance web development

[Read report](https://www.cloudflare.com/press/press-releases/2026/cloudflare-acquires-astro-to-accelerate-the-future-of-high-performance-web-development/)  

 ![2025 Forrester Wave Serverless](https://cf-assets.www.cloudflare.com/dzlvafdwdttg/5UKhWtyRcBaq4XnsrFz50O/5c157133914ae543a213581dfbae997f/Product-update-Thumbnail_3__1_.png)

Report

###### Cloudflare 2025 Impact Report

[Read report](https://cfl.re/impact-report-2025)  

 ![Background image](https://cf-assets.www.cloudflare.com/dzlvafdwdttg/5FzlGx8oeekggGYq5wTwfG/cade515fb39ed01f9466793934877b17/Press-releases-Thumbnail-1.png)

Press release

###### Cloudflare to acquire Replicate to build the most seamless AI Cloud for developers

[Read report](https://www.cloudflare.com/press/press-releases/2025/cloudflare-to-acquire-replicate-to-build-the-most-seamless-ai-cloud-for-developers/)  

 ![2025 Gartner CNAP MQ](https://cf-assets.www.cloudflare.com/dzlvafdwdttg/1md9HF80UDFu5OiEzBFIl9/2fd375ffe350f7c8014c0926666656c5/Press-releases-Thumbnail-2.png)

Report

###### Cloudflare named a Challenger in 2025 Gartner® Magic Quadrant™ for CNAP

[Read report](https://www.cloudflare.com/lp/gartner-magic-quadrant-cnap-2025/)  

 ![2025 Gartner® Magic Quadrant™](https://cf-assets.www.cloudflare.com/dzlvafdwdttg/1md9HF80UDFu5OiEzBFIl9/2fd375ffe350f7c8014c0926666656c5/Press-releases-Thumbnail-2.png)

Report

###### Cloudflare named a Visionary in 2025 Gartner® Magic Quadrant™ for SASE Platforms

[Read report](https://www.cloudflare.com/lp/gartner-magic-quadrant-sase-platforms-2025/)  

 ![Security signals](https://cf-assets.www.cloudflare.com/dzlvafdwdttg/1YoyUXhrcRl7z9EY8FstSL/411645472ac080535a228e7516b948b5/Insights-Thumbnail-5.png)

Insight

###### Rethink what cyber resilience really means

[Read](https://www.cloudflare.com/the-net/security-signals/building-cyber-resiliency/)  

 ![Background image](https://cf-assets.www.cloudflare.com/dzlvafdwdttg/6awcN9lu1EaqsPyIZyUhvm/66f4ccb9fdee71e9140dbd06e232ef46/Insights-Thumbnail-2.png)

Insight

###### NCR Voyix on how a service mindset delivers better security outcomes

[Read](https://www.cloudflare.com/the-net/illuminate/successful-security-team/)  

 ![Background image](https://cf-assets.www.cloudflare.com/dzlvafdwdttg/4luS9YlHLRsHuNfXKnAtX0/2e02e879bc8db2f8094e695f90913c8c/Insights-Thumbnail-1.png)

Insight

###### CSO Grant Bourzikas shares strategies to curb AI misinformation

[Read](https://www.cloudflare.com/the-net/building-cyber-resilience/ai-generated-misinformation/)  

 ![Background image](https://cf-assets.www.cloudflare.com/dzlvafdwdttg/1YoyUXhrcRl7z9EY8FstSL/411645472ac080535a228e7516b948b5/Insights-Thumbnail-5.png)

Insight

###### Cloudflare CIO, Mike Hamilton on how AI is disrupting software purchases

[Read](https://www.cloudflare.com/the-net/game-on/winning-ai-software/)  

 ![Background image](https://cf-assets.www.cloudflare.com/dzlvafdwdttg/5Ajsy3A2Q06FMVWFKRt7sW/a660743fb1d69461a1428947e192ed92/Ebook-Thumbnail_1.png)

eBook

###### Protect modern organizations from threats without stifling innovation

[Read](https://www.cloudflare.com/lp/everywhere-security-ebook/)  

 ![Background image](https://cf-assets.www.cloudflare.com/dzlvafdwdttg/3qqYuBpaHHPBIUkGnva4Gn/58ba0fc8b29397dde2a54652dab4db20/Whitepaper-Thumbnail-1.png)

Whitepaper

###### 3 challenges of securing and connecting application services

[Read](https://www.cloudflare.com/lp/3-challenges-of-securing-and-connecting-application-services/)  

 ![Background image](https://cf-assets.www.cloudflare.com/dzlvafdwdttg/EoU2YBWrhcBEKjrNlxvK9/dd17103ce3d1feb27fc478a101bedbbf/Ebook-Thumbnail-_2.png)

eBook

###### Explore more ebooks in Cloudflare's Resource Hub

[Read](https://www.cloudflare.com/resource-hub/?resourcetype=Ebook)  

 ![Background image](https://cf-assets.www.cloudflare.com/dzlvafdwdttg/6MWjkO0im0GzSAgiGazIm3/09bc62dfa60dbef02287ed5e4b07f44e/Ebook-Thumbnail-3.png)

eBook

###### Increase developer velocity with a connectivity cloud

[Read](https://www.cloudflare.com/lp/increase-developer-velocity-with-a-connectivity-cloud/)  

 ![Connect 2026](https://cf-assets.www.cloudflare.com/dzlvafdwdttg/2SCc1vClEOG4egxglJL22X/b958f7530725c10833affa2b0f04dc4b/Event-Thumbnail-2.png)

Event

###### Registration is now open for Cloudflare Connect 2026

[Learn more](https://www.cloudflare.com/lp/cloudflare-connect-2026/)  

 ![App services demo](https://cf-assets.www.cloudflare.com/dzlvafdwdttg/173a1i2FtYEjluy1e9nqPz/d1b53b5c7e583b64ac5e7f87e4912a60/Video-Thumbnail-2.png)

Webinar

###### Join our solutions engineering team for a weekly application services demo

[Register](https://www.cloudflare.com/product-demos/)  

 ![Cloudflare events](https://cf-assets.www.cloudflare.com/dzlvafdwdttg/02QH4tKACCGsmFHGHezPg/ec80e33f227c7a74223e58a0eb473036/Event-Thumbnail-1.png)

Event

###### Learn more about Cloudflare and meet our team at an upcoming event near you

[Register](https://www.cloudflare.com/events/)  

 ![Cloudflare webinars](https://cf-assets.www.cloudflare.com/dzlvafdwdttg/5Xv9FKPcd7u6bPz9A2KJrN/7d5bf5fc076c8d35bfbba2a73f2e9653/Virtual-workshop-Thumbnail-2.png)

Webinar

###### Enhance your knowledge and gain new skills with a live or on-demand webinar

[Register](https://www.cloudflare.com/resource-hub/?resourcetype=Webinar)  

 ![Security builders](https://cf-assets.www.cloudflare.com/dzlvafdwdttg/173a1i2FtYEjluy1e9nqPz/d1b53b5c7e583b64ac5e7f87e4912a60/Video-Thumbnail-2.png)

Event

###### Security builders workshop series

[Register](https://www.cloudflare.com/?utm_medium=display&utm_source=direct&utm_campaign=2025-q2-acq-namer-umbrella-ge-he-general-cloudflare)  

 ![Security leaders](https://cf-assets.www.cloudflare.com/dzlvafdwdttg/173a1i2FtYEjluy1e9nqPz/d1b53b5c7e583b64ac5e7f87e4912a60/Video-Thumbnail-2.png)

Event

###### Security leaders forum series

[Register](https://www.cloudflare.com/lp/security-leaders-forum/?utm_medium=display&utm_source=direct&utm_campaign=2025-q2-acq-namer-umbrella-ge-he-general-cloudflare)  

 ![Background image](https://cf-assets.www.cloudflare.com/dzlvafdwdttg/2SCc1vClEOG4egxglJL22X/b958f7530725c10833affa2b0f04dc4b/Event-Thumbnail-2.png)

Event

###### Architecture Workshop Series

[Learn more](https://www.cloudflare.com/lp/architectureworkshops/?utm_medium=display&utm_source=direct&utm_campaign=2025-q2-acq-namer-umbrella-ge-he-general-cloudflare)  

## Get started with the connectivity cloud

 ![Security Shield Protection Icon](https://cf-assets.www.cloudflare.com/dzlvafdwdttg/7CvNwSY8XCo90yNwqJkkiX/c476a3043f6bc66918b34c36e5d6533b/security-shield-protection-2.svg)

##### Get started for free

Get easy, instant access to Cloudflare security and performance services.

[Start for free](https://dash.cloudflare.com/sign-up/)  

 ![Constellation Icon](https://cf-assets.www.cloudflare.com/dzlvafdwdttg/3o96rYCOx6VOx7F316KwCx/b5d6c97da4994cf2588ed36fd82c0c20/Constellation.svg)

##### Need help choosing?

Get a personalized product recommendation for your specific needs.

[Find the right plan](https://www.cloudflare.com/about-your-website/)  

 ![Innovation Thinking Icon ](https://cf-assets.www.cloudflare.com/dzlvafdwdttg/1OnP5oJNO4uAH6f5So09bO/24f8e053ffa56a8099c8ba6a4325743e/innovation-thinking.svg)

##### Talk to an expert

Have questions or want to get a demo? Get in touch with one of our experts.

[Contact us](https://www.cloudflare.com/plans/enterprise/contact/)

이 파일을 서버의 /index.md에 업로드하여 AI 에이전트가 페이지의 깔끔한 버전에 접근할 수 있게 하세요. Accept: text/markdown 콘텐츠 협상을 설정하여 자동으로 제공할 수도 있습니다.

이 단일 페이지용으로 생성된 llms.txt

llms.txt 다운로드
# cloudflare.com

> Make employees, applications and networks faster and more secure everywhere, while reducing complexity and cost.

## Main
- [Connect, protect, and build everywhere](https://www.cloudflare.com/): Make employees, applications and networks faster and more secure everywhere, while reducing complexity and cost.
- [Accelerate performance](https://www.cloudflare.com/application-services/products/cdn/)
- [Optimize web experience](https://www.cloudflare.com/application-services/products/website-optimization/)
- [Secure web apps and APIs](https://www.cloudflare.com/application-services/products/api-shield/)
- [WAN modernization](https://www.cloudflare.com/sase/products/wan/)
- [Demos](https://www.cloudflare.com/product-demos/)
- [Zero trust network access](https://www.cloudflare.com/sase/products/access/)
- [Secure web gateway](https://www.cloudflare.com/sase/products/gateway/)
- [Email security](https://www.cloudflare.com/sase/products/email-security/)
- [Application security](https://www.cloudflare.com/application-services/products/)
- [Web application firewall](https://www.cloudflare.com/application-services/products/waf/)
- [Bot management](https://www.cloudflare.com/application-services/products/bot-management/)
- [DNS](https://www.cloudflare.com/application-services/products/dns/)
- [Smart routing](https://www.cloudflare.com/application-services/products/argo-smart-routing/)
- [Load balancing](https://www.cloudflare.com/application-services/products/load-balancing/)
- [Networking](https://www.cloudflare.com/network-services/products/)
- [L3/4 DDoS protection](https://www.cloudflare.com/network-services/products/magic-transit/)
- [Firewall-as-a-service](https://www.cloudflare.com/network-services/products/network-firewall/)
- [Network Interconnect](https://www.cloudflare.com/network-services/products/network-interconnect/)
- [Domain registrationBuy and manage domains](https://www.cloudflare.com/products/registrar/)
- [Help me choose](https://www.cloudflare.com/about-your-website/)
- [Artificial Intelligence](https://www.cloudflare.com/developer-platform/products/)
- [AI GatewayObserve, control AI apps](https://www.cloudflare.com/developer-platform/products/ai-gateway/)
- [Workers AIRun ML models on our network](https://www.cloudflare.com/developer-platform/products/workers-ai/)
- [ObservabilityLogs, metrics, and traces](https://www.cloudflare.com/developer-platform/products/workers-observability/)
- [WorkersBuild, deploy serverless apps](https://www.cloudflare.com/developer-platform/products/workers/)
- [ImagesTransform, optimize images](https://www.cloudflare.com/developer-platform/products/cloudflare-images/)
- [RealtimeBuild real-time audio/video apps](https://www.cloudflare.com/developer-platform/products/cloudflare-realtime/)
- [D1Create serverless SQL databases](https://www.cloudflare.com/developer-platform/products/d1/)
- [R2Store data without costly egress fees](https://www.cloudflare.com/developer-platform/products/r2/)
- [Workers KVServerless key-value store for apps](https://www.cloudflare.com/developer-platform/products/workers-kv/)
- [Service ProvidersDiscover our network of valued service providers](https://www.cloudflare.com/partners/service-providers/)
- [About Cloudflare](https://www.cloudflare.com/about-overview/)
- [English (United Kingdom)](https://www.cloudflare.com/en-gb/)
- [Deutsch](https://www.cloudflare.com/de-de/)
- [Español (Latinoamérica)](https://www.cloudflare.com/es-la/)
- [Español (España)](https://www.cloudflare.com/es-es/)
- [Français](https://www.cloudflare.com/fr-fr/)
- [Italiano](https://www.cloudflare.com/it-it/)
- [日本語](https://www.cloudflare.com/ja-jp/)
- [한국어](https://www.cloudflare.com/ko-kr/)

## Support
- [Contact sales](https://www.cloudflare.com/plans/enterprise/contact/)

전체 llms.txt는 도메인 전체 분석이 필요합니다 (곧 출시)

이 파일을 도메인 루트의 https://www.cloudflare.com/llms.txt에 업로드하세요. ChatGPT, Claude, Perplexity 등의 AI 에이전트가 이 파일을 확인하여 사이트 구조를 파악합니다.

시맨틱 HTML

article 또는 main 요소 사용 (100/100)

Has <main>

올바른 제목 계층 구조 (0/100)

8 heading level skip(s)

시맨틱 HTML 요소 사용 (5/100)

18 semantic elements, 1177 divs (ratio: 2%)

의미 있는 이미지 alt 속성 (99/100)

75/76 images with meaningful alt text

낮은 div 중첩 깊이 (57/100)

Avg div depth: 9.3, max: 14

콘텐츠 효율성

양호한 토큰 감소율 (100/100)

99% token reduction (HTML→Markdown)

양호한 콘텐츠 대 잡음 비율 (0/100)

Content ratio: 0.8% (8303 content chars / 982335 HTML bytes)

최소한의 인라인 스타일 (50/100)

141/4508 elements with inline styles (3.1%)

적절한 페이지 무게 (20/100)

HTML size: 959KB

AI 발견 가능성

llms.txt 파일 있음 (0/100)

No llms.txt found

robots.txt 파일 있음 (100/100)

robots.txt exists

robots.txt가 AI 봇 허용 (100/100)

All major AI bots allowed

sitemap.xml 있음 (100/100)

Sitemap found

Markdown for Agents 지원 (40/100) Application
&#10003; Accept: text/markdown &#10007; .md URL &#10007; <link> tag &#10007; Link header YAML frontmatter (enriched)
Content-Signal 있음 (robots.txt 또는 HTTP 헤더) (0/100)
&#10003; robots.txt &#10003; HTTP header &#10007; Policy

구조화 데이터

Schema.org / JSON-LD 있음 (0/100)

No JSON-LD / Schema.org found

Open Graph 태그 있음 (100/100)

All OG tags present

메타 설명 있음 (100/100)

Meta description: 112 chars

정규 URL 있음 (100/100)

Canonical URL present

lang 속성 있음 (100/100)

lang="en-us"

접근성

JavaScript 없이 콘텐츠 이용 가능 (100/100)

Content available without JavaScript

적절한 페이지 크기 (40/100)

Page size: 959KB

HTML에서 콘텐츠가 빠른 위치에 배치 (75/100)

Main content starts at 25% of HTML

{
  "url": "https://www.cloudflare.com/",
  "timestamp": 1776587860018,
  "fetch": {
    "mode": "simple",
    "timeMs": 210,
    "htmlSizeBytes": 982335,
    "supportsMarkdown": true,
    "markdownAgents": {
      "contentNegotiation": true,
      "mdUrl": {
        "found": false,
        "url": null
      },
      "linkTag": {
        "found": false,
        "url": null
      },
      "linkHeader": {
        "found": false,
        "url": null
      },
      "responseHeaders": {
        "contentSignal": "ai-train=yes, search=yes, ai-input=yes",
        "xMarkdownTokens": "7334",
        "vary": "accept"
      },
      "frontmatter": {
        "present": true,
        "fields": [
          "title",
          "description",
          "image"
        ],
        "level": "enriched"
      },
      "level": "application"
    },
    "statusCode": 200
  },
  "extraction": {
    "title": "Connect, protect, and build everywhere",
    "excerpt": "Make employees, applications and networks faster and more secure everywhere, while reducing complexity and cost.",
    "byline": null,
    "siteName": null,
    "lang": "en-us",
    "contentLength": 8303,
    "metadata": {
      "description": "Make employees, applications and networks faster and more secure everywhere, while reducing complexity and cost.",
      "ogTitle": "Connect, protect, and build everywhere",
      "ogDescription": "Make employees, applications and networks faster and more secure everywhere, while reducing complexity and cost.",
      "ogImage": "https://cf-assets.www.cloudflare.com/dzlvafdwdttg/5hEMO0prBW3wDvchZU0iBZ/8e05bb4c55f8906e58d09dbc861c0f22/CF_logo_horizontal_singlecolor_wht.svg",
      "ogType": null,
      "canonical": "https://www.cloudflare.com/",
      "lang": "en-us",
      "schemas": [],
      "robotsMeta": "index",
      "author": null,
      "generator": null,
      "markdownAlternateHref": null
    }
  },
  "markdown": "## Our connectivity cloud is the best place to\n\n-   connect your users, apps, clouds, and networks\n-   protect everything you connect to the Internet\n-   build and scale applications\n\nOver 60 cloud services on one unified platform, uniquely powered by a global cloud network. We call it the connectivity cloud.\n\n### Connect your workforce, AI agents, apps, and infrastructure\n\nCloudflare One is agile SASE. Take the fast path to safe AI adoption and zero trust access with our composable, programmable platform. Accelerate innovation with a SASE architecture unified by design.\n\n## Speak to sales about SASE and workspace security.\n\nFirst name: \\*\n\nLast name: \\*\n\nPhone: \\*\n\nWork email: \\*\n\nCompany: \\*\n\nChoose an option or search here\n\nJob level: \\*\n\nNo options\n\nSelect your job level... \\*\n\nC-Level\n\nVP\n\nDirector\n\nManager\n\nIndividual Contributor\n\nStudent\n\nOther\n\nChoose an option or search here\n\nJob function: \\*\n\nNo options\n\nSelect your job function... \\*\n\nIT\n\nSecurity\n\nNetwork\n\nInfrastructure\n\nEngineering\n\nDevOps\n\nExecutive\n\nProduct\n\nFinance/ Procurement\n\nSales / Marketing\n\nStudent\n\nPress / Media\n\nOther\n\nChoose an option or search here\n\nCountry: \\*\n\nNo options\n\nSelect your country...\n\nAfghanistan\n\nAland Islands\n\nAlbania\n\nAlgeria\n\nAndorra\n\nAngola\n\nAnguilla\n\nAntarctica\n\nAntigua and Barbuda\n\nArgentina\n\nArmenia\n\nAruba\n\nAustralia\n\nAustria\n\nAzerbaijan\n\nBahamas\n\nBahrain\n\nBangladesh\n\nBarbados\n\nBelarus\n\nBelgium\n\nBelize\n\nBenin\n\nBermuda\n\nBhutan\n\nBolivia, Plurinational State of\n\nBonaire, Sint Eustatius and Saba\n\nBosnia and Herzegovina\n\nBotswana\n\nBouvet Island\n\nBrazil\n\nBritish Indian Ocean Territory\n\nBrunei Darussalam\n\nBulgaria\n\nBurkina Faso\n\nBurundi\n\nCambodia\n\nCameroon\n\nCanada\n\nCape Verde\n\nCayman Islands\n\nCentral African Republic\n\nChad\n\nChile\n\nChina\n\nChristmas Island\n\nCocos (Keeling) Islands\n\nColombia\n\nComoros\n\nCongo, the Democratic Republic of the\n\nCongo\n\nCook Islands\n\nCosta Rica\n\nCote d'Ivoire\n\nCroatia\n\nCuba\n\nCuraçao\n\nCyprus\n\nCzech Republic\n\nDenmark\n\nDjibouti\n\nDominica\n\nDominican Republic\n\nEcuador\n\nEgypt\n\nEl Salvador\n\nEquatorial Guinea\n\nEritrea\n\nEstonia\n\nEthiopia\n\nFalkland Islands (Malvinas)\n\nFaroe Islands\n\nFiji\n\nFinland\n\nFrance\n\nFrench Guiana\n\nFrench Polynesia\n\nFrench Southern Territories\n\nGabon\n\nGambia\n\nGeorgia\n\nGermany\n\nGhana\n\nGibraltar\n\nGreece\n\nGreenland\n\nGrenada\n\nGuadeloupe\n\nGuatemala\n\nGuernsey\n\nGuinea-Bissau\n\nGuinea\n\nGuyana\n\nHaiti\n\nHeard Island and McDonald Islands\n\nHoly See (Vatican City State)\n\nHonduras\n\nHong Kong\n\nHungary\n\nIceland\n\nIndia\n\nIndonesia\n\nIran\n\nIraq\n\nIreland\n\nIsle of Man\n\nIsrael\n\nItaly\n\nJamaica\n\nJapan\n\nJersey\n\nJordan\n\nKazakhstan\n\nKenya\n\nKiribati\n\nKuwait\n\nKyrgyzstan\n\nLao People's Democratic Republic\n\nLatvia\n\nLebanon\n\nLesotho\n\nLiberia\n\nLibya\n\nLiechtenstein\n\nLithuania\n\nLuxembourg\n\nMacao\n\nMacedonia, the former Yugoslav Republic of\n\nMadagascar\n\nMalawi\n\nMalaysia\n\nMaldives\n\nMali\n\nMalta\n\nMartinique\n\nMauritania\n\nMauritius\n\nMayotte\n\nMexico\n\nMoldova, Republic of\n\nMonaco\n\nMongolia\n\nMontenegro\n\nMontserrat\n\nMorocco\n\nMozambique\n\nMyanmar\n\nNamibia\n\nNauru\n\nNepal\n\nNetherlands\n\nNew Caledonia\n\nNew Zealand\n\nNicaragua\n\nNiger\n\nNigeria\n\nNiue\n\nNorfolk Island\n\nNorth Korea\n\nNorway\n\nOman\n\nPakistan\n\nPalestine\n\nPanama\n\nPapua New Guinea\n\nParaguay\n\nPeru\n\nPhilippines\n\nPitcairn\n\nPoland\n\nPortugal\n\nPuerto Rico\n\nQatar\n\nReunion\n\nRomania\n\nRussian Federation\n\nRwanda\n\nSaint Barthélemy\n\nSaint Helena, Ascension and Tristan da Cunha\n\nSaint Kitts and Nevis\n\nSaint Lucia\n\nSaint Martin (French part)\n\nSaint Pierre and Miquelon\n\nSaint Vincent and the Grenadines\n\nSamoa\n\nSan Marino\n\nSao Tome and Principe\n\nSaudi Arabia\n\nSenegal\n\nSerbia\n\nSeychelles\n\nSierra Leone\n\nSingapore\n\nSint Maarten (Dutch part)\n\nSlovakia\n\nSlovenia\n\nSolomon Islands\n\nSomalia\n\nSouth Africa\n\nSouth Georgia and the South Sandwich Islands\n\nSouth Korea\n\nSouth Sudan\n\nSpain\n\nSri Lanka\n\nSudan\n\nSuriname\n\nSvalbard and Jan Mayen\n\nSwaziland\n\nSweden\n\nSwitzerland\n\nSyria\n\nTaiwan\n\nTajikistan\n\nTanzania, United Republic of\n\nThailand\n\nTimor-Leste\n\nTogo\n\nTokelau\n\nTonga\n\nTrinidad and Tobago\n\nTunisia\n\nTurkey\n\nTurkmenistan\n\nTurks and Caicos Islands\n\nTuvalu\n\nUganda\n\nUkraine\n\nUnited Arab Emirates\n\nUnited Kingdom\n\nUnited States\n\nUruguay\n\nUzbekistan\n\nVanuatu\n\nVenezuela, Bolivarian Republic of\n\nViet Nam\n\nVirgin Islands, British\n\nWallis and Futuna\n\nWestern Sahara\n\nYemen\n\nZambia\n\nZimbabwe\n\n \nIn submitting this form, you agree to receive information from Cloudflare related to our products, events, and special offers. You can unsubscribe from such messages at any time. We never sell your data, and we value your privacy choices. Please see our [Privacy Policy](https://www.cloudflare.com/privacypolicy/) for information.\n\n[Learn more](https://www.cloudflare.com/sase/)  \n\n###### Related\n\n### Protect and accelerate websites and AI-enabled apps\n\nUse our industry-leading WAF, DDoS, and bot protection to protect your websites, apps, APIs, and AI workloads while accelerating performance with our ultra-fast CDN. Get started in 5 minutes.\n\n###### Related\n\n### Build and secure AI agents\n\nAgents are the future of AI, and Cloudflare is the best place to get started. Use our agents framework and orchestration tools to run the models you choose and deliver new agents quickly. Build, deploy, and secure access for remote MCP servers so agents can access the features of your apps.\n\n###### Related\n\n## One global cloud network unlike any other\n\nOnly Cloudflare offers an intelligent, global cloud network built from the ground up for security, speed, and reliability.\n\n60+\n\ncloud services available globally\n\n215B\n\ncyber threats blocked each day\n\n20%\n\nof all websites are protected by Cloudflare\n\n330+\n\ncities in 125+ countries, including mainland China\n\n## Leading companies rely on Cloudflare\n\n#### Connect\n\n#### Protect\n\n#### Build\n\n## How Cloudflare can help\n\n ![cloudflare-zero-trust](https://cf-assets.www.cloudflare.com/dzlvafdwdttg/8hc75nt6kXgLxbHJdnj4Y/a1eb609961866aac1f1ec5d403cd14cd/Type_solid_1.svg)\n\n###### Modernize remote access\n\n ![innovation-intelligence](https://cf-assets.www.cloudflare.com/dzlvafdwdttg/1bFuuCltYhpEJ6GXurbDkM/d35e3a7906ad77973f8dc15f98783e0e/Type_solid__1__1.svg)\n\n###### Secure generative and agentic AI\n\n ![Deploy Severless Code Icon](https://cf-assets.www.cloudflare.com/dzlvafdwdttg/SHl63Djc8njFxZGCHDXYV/e1242ffa9fe3ca46f2910cc822263a95/Type_solid_3.svg)\n\n###### Deploy serverless code\n\n[Deploy serverless code](https://www.cloudflare.com/developer-platform/products/workers/)  \n\nBuild serverless applications and deploy instantly across the globe for speed, reliability, and scale.\n\n ![Deploy AI on the Edge Icon](https://cf-assets.www.cloudflare.com/dzlvafdwdttg/3mVpWblZcy0dXxq9rz5OMy/1dbc0cb5e78db1978f56d27fa6e99de6/Type_solid__1__2.svg)\n\n###### Deploy AI on the edge\n\n ![Stop DDoS attacks](https://cf-assets.www.cloudflare.com/dzlvafdwdttg/779orctICkHMB2JY8NLFyf/ca496015386d05622c4d510f41ab64a3/Type_outline_1.svg)\n\n###### Stop DDoS attacks\n\n[Stop DDoS attacks](https://www.cloudflare.com/network-services/products/magic-transit/)  \n\nProtect public-facing subnets with Cloudflare’s massive 477 Tbps network capacity that absorbs and filters attacks.\n\n ![Block bot traffic](https://cf-assets.www.cloudflare.com/dzlvafdwdttg/3BLMrHo42tJUy8cNwOoxkk/8ed12ad035c5166bf426f16796a2b31c/Type_solid_2.svg)\n\n###### Block bot traffic\n\n[Block bot traffic](https://www.cloudflare.com/application-services/products/bot-management/)  \n\nStop bot attacks in real time by harnessing data from millions of websites protected by Cloudflare.\n\n## News and resources\n\n##### What's new\n\n##### Insights\n\n##### Library\n\n##### Events\n\n## Get started with the connectivity cloud\n\n ![Security Shield Protection Icon](https://cf-assets.www.cloudflare.com/dzlvafdwdttg/7CvNwSY8XCo90yNwqJkkiX/c476a3043f6bc66918b34c36e5d6533b/security-shield-protection-2.svg)\n\n##### Get started for free\n\nGet easy, instant access to Cloudflare security and performance services.\n\n[Start for free](https://dash.cloudflare.com/sign-up/)  \n\n ![Constellation Icon](https://cf-assets.www.cloudflare.com/dzlvafdwdttg/3o96rYCOx6VOx7F316KwCx/b5d6c97da4994cf2588ed36fd82c0c20/Constellation.svg)\n\n##### Need help choosing?\n\nGet a personalized product recommendation for your specific needs.\n\n[Find the right plan](https://www.cloudflare.com/about-your-website/)  \n\n ![Innovation Thinking Icon ](https://cf-assets.www.cloudflare.com/dzlvafdwdttg/1OnP5oJNO4uAH6f5So09bO/24f8e053ffa56a8099c8ba6a4325743e/innovation-thinking.svg)\n\n##### Talk to an expert\n\nHave questions or want to get a demo? Get in touch with one of our experts.\n\n[Contact us](https://www.cloudflare.com/plans/enterprise/contact/)\n",
  "fullPageMarkdown": "Connect, protect, and build everywhere | Cloudflare\n\n[Support](http://www.support.cloudflare.com/)\n\nLanguages\n\n-   [English](https://www.cloudflare.com/)\n-   [English (United Kingdom)](https://www.cloudflare.com/en-gb/)\n-   [Deutsch](https://www.cloudflare.com/de-de/)\n-   [Español (Latinoamérica)](https://www.cloudflare.com/es-la/)\n-   [Español (España)](https://www.cloudflare.com/es-es/)\n-   [Français](https://www.cloudflare.com/fr-fr/)\n-   [Italiano](https://www.cloudflare.com/it-it/)\n-   [日本語](https://www.cloudflare.com/ja-jp/)\n-   [한국어](https://www.cloudflare.com/ko-kr/)\n-   [Polski](https://www.cloudflare.com/pl-pl/)\n-   [Português (Brasil)](https://www.cloudflare.com/pt-br/)\n-   [Русский](https://www.cloudflare.com/ru-ru/)\n-   [繁體中文](https://www.cloudflare.com/zh-tw/)\n-   [简体中文](https://www.cloudflare.com/zh-cn/)\n\n![Hero Takeover](https://cf-assets.www.cloudflare.com/dzlvafdwdttg/5B5shLB8bSKIyB9NJ6R1jz/87e7617be2c61603d46003cb3f1bd382/Hero-globe-bg-takeover-xxl.png)\n\n# Connect, protect, and build everywhere\n\nWe make websites, apps, AI agents, and networks faster and more secure. Our agile SASE platform accelerates safe AI adoption, and our developer platform is the best place to build and run AI apps.\n\n[Start for free](https://dash.cloudflare.com/sign-up)\n\n[See pricing](https://www.cloudflare.com/plans/)\n\n ![Agents week 2026](https://cf-assets.www.cloudflare.com/dzlvafdwdttg/QNKyzAsE17944B8c3RsJR/088a2641e439d89acc5adee6871a66d9/agents-week-thumbnail.png)\n\n###### Welcome to Agents Week 2026\n\n[Explore the latest](https://www.cloudflare.com/agents-week/)  \n\n ![2026 Cloudflare Security Signals Report](https://cf-assets.www.cloudflare.com/dzlvafdwdttg/UG4KsLnFZA9vxvrhVAyID/f59f3f4ea150a83976297d4dcdc793de/Signals_report__1_.png)\n\n###### New 2026 Security Signals Report\n\nSix principles for autonomic resilience\n\n[Download report](https://www.cloudflare.com/lp/security-signals-report/2026/)  \n\n## Our connectivity cloud is the best place to\n\n-   connect your users, apps, clouds, and networks\n-   protect everything you connect to the Internet\n-   build and scale applications\n\nOver 60 cloud services on one unified platform, uniquely powered by a global cloud network. We call it the connectivity cloud.\n\n### Connect your workforce, AI agents, apps, and infrastructure\n\nCloudflare One is agile SASE. Take the fast path to safe AI adoption and zero trust access with our composable, programmable platform. Accelerate innovation with a SASE architecture unified by design.\n\nContact sales\n\n## Speak to sales about SASE and workspace security.\n\nFirst name: \\*\n\nLast name: \\*\n\nPhone: \\*\n\nWork email: \\*\n\nCompany: \\*\n\nSelect your job level... \\* C-Level VP Director Manager Individual Contributor Student Other\n\nChoose an option or search here\n\n Job level: \\*\n\nNo options\n\nSelect your job level... \\*\n\nC-Level\n\nVP\n\nDirector\n\nManager\n\nIndividual Contributor\n\nStudent\n\nOther\n\nSelect your job function... \\* IT Security Network Infrastructure Engineering DevOps Executive Product Finance/ Procurement Sales / Marketing Student Press / Media Other\n\nChoose an option or search here\n\n Job function: \\*\n\nNo options\n\nSelect your job function... \\*\n\nIT\n\nSecurity\n\nNetwork\n\nInfrastructure\n\nEngineering\n\nDevOps\n\nExecutive\n\nProduct\n\nFinance/ Procurement\n\nSales / Marketing\n\nStudent\n\nPress / Media\n\nOther\n\nSelect your country... Afghanistan Aland Islands Albania Algeria Andorra Angola Anguilla Antarctica Antigua and Barbuda Argentina Armenia Aruba Australia Austria Azerbaijan Bahamas Bahrain Bangladesh Barbados Belarus Belgium Belize Benin Bermuda Bhutan Bolivia, Plurinational State of Bonaire, Sint Eustatius and Saba Bosnia and Herzegovina Botswana Bouvet Island Brazil British Indian Ocean Territory Brunei Darussalam Bulgaria Burkina Faso Burundi Cambodia Cameroon Canada Cape Verde Cayman Islands Central African Republic Chad Chile China Christmas Island Cocos (Keeling) Islands Colombia Comoros Congo, the Democratic Republic of the Congo Cook Islands Costa Rica Cote d'Ivoire Croatia Cuba Curaçao Cyprus Czech Republic Denmark Djibouti Dominica Dominican Republic Ecuador Egypt El Salvador Equatorial Guinea Eritrea Estonia Ethiopia Falkland Islands (Malvinas) Faroe Islands Fiji Finland France French Guiana French Polynesia French Southern Territories Gabon Gambia Georgia Germany Ghana Gibraltar Greece Greenland Grenada Guadeloupe Guatemala Guernsey Guinea-Bissau Guinea Guyana Haiti Heard Island and McDonald Islands Holy See (Vatican City State) Honduras Hong Kong Hungary Iceland India Indonesia Iran Iraq Ireland Isle of Man Israel Italy Jamaica Japan Jersey Jordan Kazakhstan Kenya Kiribati Kuwait Kyrgyzstan Lao People's Democratic Republic Latvia Lebanon Lesotho Liberia Libya Liechtenstein Lithuania Luxembourg Macao Macedonia, the former Yugoslav Republic of Madagascar Malawi Malaysia Maldives Mali Malta Martinique Mauritania Mauritius Mayotte Mexico Moldova, Republic of Monaco Mongolia Montenegro Montserrat Morocco Mozambique Myanmar Namibia Nauru Nepal Netherlands New Caledonia New Zealand Nicaragua Niger Nigeria Niue Norfolk Island North Korea Norway Oman Pakistan Palestine Panama Papua New Guinea Paraguay Peru Philippines Pitcairn Poland Portugal Puerto Rico Qatar Reunion Romania Russian Federation Rwanda Saint Barthélemy Saint Helena, Ascension and Tristan da Cunha Saint Kitts and Nevis Saint Lucia Saint Martin (French part) Saint Pierre and Miquelon Saint Vincent and the Grenadines Samoa San Marino Sao Tome and Principe Saudi Arabia Senegal Serbia Seychelles Sierra Leone Singapore Sint Maarten (Dutch part) Slovakia Slovenia Solomon Islands Somalia South Africa South Georgia and the South Sandwich Islands South Korea South Sudan Spain Sri Lanka Sudan Suriname Svalbard and Jan Mayen Swaziland Sweden Switzerland Syria Taiwan Tajikistan Tanzania, United Republic of Thailand Timor-Leste Togo Tokelau Tonga Trinidad and Tobago Tunisia Turkey Turkmenistan Turks and Caicos Islands Tuvalu Uganda Ukraine United Arab Emirates United Kingdom United States Uruguay Uzbekistan Vanuatu Venezuela, Bolivarian Republic of Viet Nam Virgin Islands, British Wallis and Futuna Western Sahara Yemen Zambia Zimbabwe\n\nChoose an option or search here\n\n Country: \\*\n\nNo options\n\nSelect your country...\n\nAfghanistan\n\nAland Islands\n\nAlbania\n\nAlgeria\n\nAndorra\n\nAngola\n\nAnguilla\n\nAntarctica\n\nAntigua and Barbuda\n\nArgentina\n\nArmenia\n\nAruba\n\nAustralia\n\nAustria\n\nAzerbaijan\n\nBahamas\n\nBahrain\n\nBangladesh\n\nBarbados\n\nBelarus\n\nBelgium\n\nBelize\n\nBenin\n\nBermuda\n\nBhutan\n\nBolivia, Plurinational State of\n\nBonaire, Sint Eustatius and Saba\n\nBosnia and Herzegovina\n\nBotswana\n\nBouvet Island\n\nBrazil\n\nBritish Indian Ocean Territory\n\nBrunei Darussalam\n\nBulgaria\n\nBurkina Faso\n\nBurundi\n\nCambodia\n\nCameroon\n\nCanada\n\nCape Verde\n\nCayman Islands\n\nCentral African Republic\n\nChad\n\nChile\n\nChina\n\nChristmas Island\n\nCocos (Keeling) Islands\n\nColombia\n\nComoros\n\nCongo, the Democratic Republic of the\n\nCongo\n\nCook Islands\n\nCosta Rica\n\nCote d'Ivoire\n\nCroatia\n\nCuba\n\nCuraçao\n\nCyprus\n\nCzech Republic\n\nDenmark\n\nDjibouti\n\nDominica\n\nDominican Republic\n\nEcuador\n\nEgypt\n\nEl Salvador\n\nEquatorial Guinea\n\nEritrea\n\nEstonia\n\nEthiopia\n\nFalkland Islands (Malvinas)\n\nFaroe Islands\n\nFiji\n\nFinland\n\nFrance\n\nFrench Guiana\n\nFrench Polynesia\n\nFrench Southern Territories\n\nGabon\n\nGambia\n\nGeorgia\n\nGermany\n\nGhana\n\nGibraltar\n\nGreece\n\nGreenland\n\nGrenada\n\nGuadeloupe\n\nGuatemala\n\nGuernsey\n\nGuinea-Bissau\n\nGuinea\n\nGuyana\n\nHaiti\n\nHeard Island and McDonald Islands\n\nHoly See (Vatican City State)\n\nHonduras\n\nHong Kong\n\nHungary\n\nIceland\n\nIndia\n\nIndonesia\n\nIran\n\nIraq\n\nIreland\n\nIsle of Man\n\nIsrael\n\nItaly\n\nJamaica\n\nJapan\n\nJersey\n\nJordan\n\nKazakhstan\n\nKenya\n\nKiribati\n\nKuwait\n\nKyrgyzstan\n\nLao People's Democratic Republic\n\nLatvia\n\nLebanon\n\nLesotho\n\nLiberia\n\nLibya\n\nLiechtenstein\n\nLithuania\n\nLuxembourg\n\nMacao\n\nMacedonia, the former Yugoslav Republic of\n\nMadagascar\n\nMalawi\n\nMalaysia\n\nMaldives\n\nMali\n\nMalta\n\nMartinique\n\nMauritania\n\nMauritius\n\nMayotte\n\nMexico\n\nMoldova, Republic of\n\nMonaco\n\nMongolia\n\nMontenegro\n\nMontserrat\n\nMorocco\n\nMozambique\n\nMyanmar\n\nNamibia\n\nNauru\n\nNepal\n\nNetherlands\n\nNew Caledonia\n\nNew Zealand\n\nNicaragua\n\nNiger\n\nNigeria\n\nNiue\n\nNorfolk Island\n\nNorth Korea\n\nNorway\n\nOman\n\nPakistan\n\nPalestine\n\nPanama\n\nPapua New Guinea\n\nParaguay\n\nPeru\n\nPhilippines\n\nPitcairn\n\nPoland\n\nPortugal\n\nPuerto Rico\n\nQatar\n\nReunion\n\nRomania\n\nRussian Federation\n\nRwanda\n\nSaint Barthélemy\n\nSaint Helena, Ascension and Tristan da Cunha\n\nSaint Kitts and Nevis\n\nSaint Lucia\n\nSaint Martin (French part)\n\nSaint Pierre and Miquelon\n\nSaint Vincent and the Grenadines\n\nSamoa\n\nSan Marino\n\nSao Tome and Principe\n\nSaudi Arabia\n\nSenegal\n\nSerbia\n\nSeychelles\n\nSierra Leone\n\nSingapore\n\nSint Maarten (Dutch part)\n\nSlovakia\n\nSlovenia\n\nSolomon Islands\n\nSomalia\n\nSouth Africa\n\nSouth Georgia and the South Sandwich Islands\n\nSouth Korea\n\nSouth Sudan\n\nSpain\n\nSri Lanka\n\nSudan\n\nSuriname\n\nSvalbard and Jan Mayen\n\nSwaziland\n\nSweden\n\nSwitzerland\n\nSyria\n\nTaiwan\n\nTajikistan\n\nTanzania, United Republic of\n\nThailand\n\nTimor-Leste\n\nTogo\n\nTokelau\n\nTonga\n\nTrinidad and Tobago\n\nTunisia\n\nTurkey\n\nTurkmenistan\n\nTurks and Caicos Islands\n\nTuvalu\n\nUganda\n\nUkraine\n\nUnited Arab Emirates\n\nUnited Kingdom\n\nUnited States\n\nUruguay\n\nUzbekistan\n\nVanuatu\n\nVenezuela, Bolivarian Republic of\n\nViet Nam\n\nVirgin Islands, British\n\nWallis and Futuna\n\nWestern Sahara\n\nYemen\n\nZambia\n\nZimbabwe\n\n Yes - I want to stay in touch with Cloudflare to receive valuable content such as product news, blog updates, and more.\n\n \\[Required\\] Terms of Service - [view](https://www.cloudflare.com/terms/) \\*\n\n \\[Required\\] Collection and Use of Personal Information - [view](https://www.cloudflare.com/privacypolicy/#2-information-we-collect-categories-of-data-subjects) \\*\n\n \\[Required\\] Sharing of a limited amount of your Personal Information overseas - [view](https://www.cloudflare.com/gdpr/subprocessors/cloudflare-services/) \\*\n\n \\[Optional\\] Sharing of a limited amount of your Personal Information to marketing third-parties - [view](https://www.cloudflare.com/privacypolicy/)\n\nContact us\n\n## Thank You\n\nSomeone from Cloudflare will be in touch with you shortly.\n\n \nIn submitting this form, you agree to receive information from Cloudflare related to our products, events, and special offers. You can unsubscribe from such messages at any time. We never sell your data, and we value your privacy choices. Please see our [Privacy Policy](https://www.cloudflare.com/privacypolicy/) for information.\n\n[Learn more](https://www.cloudflare.com/sase/)  \n\n###### Related\n\n[SASE demo hub](https://www.cloudflare.com/sase/demos/) [10-step SASE journey](https://www.cloudflare.com/lp/10-steps-sase-journey/)\n\n### Protect and accelerate websites and AI-enabled apps\n\nUse our industry-leading WAF, DDoS, and bot protection to protect your websites, apps, APIs, and AI workloads while accelerating performance with our ultra-fast CDN. Get started in 5 minutes.\n\n[Start for free](https://dash.cloudflare.com/sign-up)\n\n[Compare plans](https://www.cloudflare.com/plans/)  \n\n###### Related\n\n[Cloudflare named a Leader in Forrester Wave for WAF for 2025](https://www.cloudflare.com/lp/forrester-wave-waf-2025/)\n\n### Build and secure AI agents\n\nAgents are the future of AI, and Cloudflare is the best place to get started. Use our agents framework and orchestration tools to run the models you choose and deliver new agents quickly. Build, deploy, and secure access for remote MCP servers so agents can access the features of your apps.\n\n[Start building now](https://www.cloudflare.com/developer-platform/)\n\n[Developer docs](https://developers.cloudflare.com/)  \n\n###### Related\n\n[Build AI apps quickly](http://ai.cloudflare.com/) [Build AI Agents](https://agents.cloudflare.com/)\n\n## One global cloud network unlike any other\n\nOnly Cloudflare offers an intelligent, global cloud network built from the ground up for security, speed, and reliability.\n\n60+\n\ncloud services available globally\n\n215B\n\ncyber threats blocked each day\n\n20%\n\nof all websites are protected by Cloudflare\n\n330+\n\ncities in 125+ countries, including mainland China\n\n## Leading companies rely on Cloudflare\n\n#### Connect\n\n#### Protect\n\n#### Build\n\n### Connect users and apps securely\n\nSASE keeps hybrid work productive everywhere, securing human and AI agent communications.\n\n[Try it now](https://dash.cloudflare.com/sign-up/zero-trust)\n\n[Learn more](https://www.cloudflare.com/sase/)  \n\n![Discord logo](https://www.cloudflare.com/cdn-cgi/image/format=auto/https://cf-assets.www.cloudflare.com/v2/image/if1af5160h4hdbghmf28es104l/case-studies_logo_hp_discord.png)\n\n\"Discord is where the world builds relationships. Cloudflare helps us deliver on that mission, connecting our internal engineering team to the tools they need. With Cloudflare, we can rest easy knowing every request to our critical apps is evaluated for identity and context — a true Zero Trust approach.\"\n\nMark Smith\n\nDirector of Infrastructure, Discord\n\n### Protect and accelerate websites\n\nPlace a global cloud network in front of websites, apps, and APIs to insulate users from Internet-borne threats and accelerate performance.\n\n[Sign up for demo](https://www.cloudflare.com/product-demos/)\n\n[Learn more](https://www.cloudflare.com/application-services/)  \n\n ![Zendesk logo](https://cf-assets.www.cloudflare.com/dzlvafdwdttg/1zapF3fByv7AKnNvEzRNSD/18fc817e0fcb42c967fdd5e4e7cb9e4c/zendesk-logo.png)\n\n\"Like Zendesk, innovation is in Cloudflare’s DNA — it mirrors our beautifully simple development ethos with the connectivity cloud, a powerful, yet simple-to-implement, end-to-end solution that does all the heavy lifting, so we don’t need to.\"\n\nNan Guo\n\nSenior Vice President of Engineering, Zendesk\n\n### Build and scale applications\n\nThe computing power, databases, storage, media, and AI inference you need to build without operational overhead.\n\n[Learn more](https://workers.cloudflare.com/)\n\n[View plans](https://workers.cloudflare.com/pricing)  \n\n ![Investec logo](https://cf-assets.www.cloudflare.com/dzlvafdwdttg/7iPsQ5S7YEhFkcRFqsof6/fb5313227265830842320a773b9b7ba8/Investec-logo.png)\n\n\"The Cloudflare Developer Platform and Workers are central to our ability to provide user-programmable functionality. It is just one example of how we leverage Cloudflare capabilities to enhance our technology and deliver value to our clients.\"\n\nChristopher Naidoo\n\nHead of Digital IT Operations, Investec\n\n ![Broadcom logo](https://cf-assets.www.cloudflare.com/dzlvafdwdttg/1YpsqECHBpbdKpFP1zGC4G/588de5f9c22dc26689a163d28ca8c837/Broadcom_-_logo.svg)\n\n ![Colgate-Palmolive logo](https://cf-assets.www.cloudflare.com/dzlvafdwdttg/4BCy1pz7aCpnp4o2DYbwwZ/beda767373ab0541b246839d5fb9f4e4/Colgate-Palmolive_-_logo.svg)\n\n![Doordash logo](https://cf-assets.www.cloudflare.com/v2/image/dfo8jd6u8l66b4kf4fm0ibvh24/DoorDash_logo_color.svg)\n\n ![Garmin logo](https://cf-assets.www.cloudflare.com/dzlvafdwdttg/4scwZf1ISfZERoO0nWiPEA/d34652e183694387e5952a730aad2c32/Garmin_-_logo__1_.svg)\n\n ![National Cyber Security Centre logo](https://cf-assets.www.cloudflare.com/dzlvafdwdttg/3mvx0mLd1y3RLMyC4Qm72U/6b7460d2c7d0dc7ad157715d94f28903/NCSC_1.svg)\n\n ![Roche logo](https://cf-assets.www.cloudflare.com/dzlvafdwdttg/66HzTNSBXhN3pNtUrvXXbq/90a6442f818623ad95d4579307b034dc/Roche_id1Fa0CpTI_0_1.svg)\n\n ![Shopify logo](https://cf-assets.www.cloudflare.com/dzlvafdwdttg/2AbGls2Pe6K2LqCnIHVbvL/d8ea7efa6746c7fc9cee53b7e65834d7/Shopify_-_logo.svg)\n\n ![Sofi logo](https://cf-assets.www.cloudflare.com/dzlvafdwdttg/2JZuWDG4fTwdGFHLg4RyZh/2ac29c01f8e61fa6705a56874cb072a7/Sofi_-_logo.svg)\n\n ![US DHS logo](https://cf-assets.www.cloudflare.com/dzlvafdwdttg/5PW1WLd3bhgtAQC51m3K6V/dea89184c7380122d2700138e699e297/logo-wordmark-blue_1.svg)\n\n ![Thomson Reuters logo](https://cf-assets.www.cloudflare.com/dzlvafdwdttg/1iXuSJGPlohZBQ8role3gn/4e2b2a37de3e28fab326c6045f0b8461/Logo_1.svg)\n\n ![Broadcom logo](https://cf-assets.www.cloudflare.com/dzlvafdwdttg/1YpsqECHBpbdKpFP1zGC4G/588de5f9c22dc26689a163d28ca8c837/Broadcom_-_logo.svg)\n\n ![Colgate-Palmolive logo](https://cf-assets.www.cloudflare.com/dzlvafdwdttg/4BCy1pz7aCpnp4o2DYbwwZ/beda767373ab0541b246839d5fb9f4e4/Colgate-Palmolive_-_logo.svg)\n\n![Doordash logo](https://cf-assets.www.cloudflare.com/v2/image/dfo8jd6u8l66b4kf4fm0ibvh24/DoorDash_logo_color.svg)\n\n ![Garmin logo](https://cf-assets.www.cloudflare.com/dzlvafdwdttg/4scwZf1ISfZERoO0nWiPEA/d34652e183694387e5952a730aad2c32/Garmin_-_logo__1_.svg)\n\n ![National Cyber Security Centre logo](https://cf-assets.www.cloudflare.com/dzlvafdwdttg/3mvx0mLd1y3RLMyC4Qm72U/6b7460d2c7d0dc7ad157715d94f28903/NCSC_1.svg)\n\n ![Roche logo](https://cf-assets.www.cloudflare.com/dzlvafdwdttg/66HzTNSBXhN3pNtUrvXXbq/90a6442f818623ad95d4579307b034dc/Roche_id1Fa0CpTI_0_1.svg)\n\n ![Shopify logo](https://cf-assets.www.cloudflare.com/dzlvafdwdttg/2AbGls2Pe6K2LqCnIHVbvL/d8ea7efa6746c7fc9cee53b7e65834d7/Shopify_-_logo.svg)\n\n ![Sofi logo](https://cf-assets.www.cloudflare.com/dzlvafdwdttg/2JZuWDG4fTwdGFHLg4RyZh/2ac29c01f8e61fa6705a56874cb072a7/Sofi_-_logo.svg)\n\n ![US DHS logo](https://cf-assets.www.cloudflare.com/dzlvafdwdttg/5PW1WLd3bhgtAQC51m3K6V/dea89184c7380122d2700138e699e297/logo-wordmark-blue_1.svg)\n\n ![Thomson Reuters logo](https://cf-assets.www.cloudflare.com/dzlvafdwdttg/1iXuSJGPlohZBQ8role3gn/4e2b2a37de3e28fab326c6045f0b8461/Logo_1.svg)\n\n## How Cloudflare can help\n\n ![cloudflare-zero-trust](https://cf-assets.www.cloudflare.com/dzlvafdwdttg/8hc75nt6kXgLxbHJdnj4Y/a1eb609961866aac1f1ec5d403cd14cd/Type_solid_1.svg)\n\n###### Modernize remote access\n\n[Modernize remote access](https://www.cloudflare.com/sase/products/access/)  \n\nProvide granular, least privilege access to internal applications and infrastructure.\n\n ![innovation-intelligence](https://cf-assets.www.cloudflare.com/dzlvafdwdttg/1bFuuCltYhpEJ6GXurbDkM/d35e3a7906ad77973f8dc15f98783e0e/Type_solid__1__1.svg)\n\n###### Secure generative and agentic AI\n\n[Secure generative and agentic AI](https://www.cloudflare.com/ai-security/)  \n\nEnable safe AI adoption by securing workforce AI tools and public-facing applications.\n\n ![Deploy Severless Code Icon](https://cf-assets.www.cloudflare.com/dzlvafdwdttg/SHl63Djc8njFxZGCHDXYV/e1242ffa9fe3ca46f2910cc822263a95/Type_solid_3.svg)\n\n###### Deploy serverless code\n\n[Deploy serverless code](https://www.cloudflare.com/developer-platform/products/workers/)  \n\nBuild serverless applications and deploy instantly across the globe for speed, reliability, and scale.\n\n ![Deploy AI on the Edge Icon](https://cf-assets.www.cloudflare.com/dzlvafdwdttg/3mVpWblZcy0dXxq9rz5OMy/1dbc0cb5e78db1978f56d27fa6e99de6/Type_solid__1__2.svg)\n\n###### Deploy AI on the edge\n\n[Deploy AI on the edge](https://www.cloudflare.com/developer-platform/products/workers-ai/)  \n\nBuild and deploy ambitious AI apps everywhere to Cloudflare's global network.\n\n ![Stop DDoS attacks](https://cf-assets.www.cloudflare.com/dzlvafdwdttg/779orctICkHMB2JY8NLFyf/ca496015386d05622c4d510f41ab64a3/Type_outline_1.svg)\n\n###### Stop DDoS attacks\n\n[Stop DDoS attacks](https://www.cloudflare.com/network-services/products/magic-transit/)  \n\nProtect public-facing subnets with Cloudflare’s massive 477 Tbps network capacity that absorbs and filters attacks.\n\n ![Block bot traffic](https://cf-assets.www.cloudflare.com/dzlvafdwdttg/3BLMrHo42tJUy8cNwOoxkk/8ed12ad035c5166bf426f16796a2b31c/Type_solid_2.svg)\n\n###### Block bot traffic\n\n[Block bot traffic](https://www.cloudflare.com/application-services/products/bot-management/)  \n\nStop bot attacks in real time by harnessing data from millions of websites protected by Cloudflare.\n\n[Show more](https://www.cloudflare.com/resource-hub/?resourcetype=Solution+%26+Product+Guides)\n\n## News and resources\n\n##### What's new\n\n##### Insights\n\n##### Library\n\n##### Events\n\n ![Pay per crawl](https://cf-assets.www.cloudflare.com/dzlvafdwdttg/5FzlGx8oeekggGYq5wTwfG/cade515fb39ed01f9466793934877b17/Press-releases-Thumbnail-1.png)\n\nPress release\n\n###### Cloudflare and GoDaddy partner to help enable an open agentic web\n\n[Read](https://www.cloudflare.com/press/press-releases/2026/cloudflare-and-godaddy-partner-to-help-enable-an-open-agentic-web/)  \n\n ![Forrester Wave for Edge Development Platforms for 2026](https://cf-assets.www.cloudflare.com/dzlvafdwdttg/4iJzBRMF9qufSZ2AbWpcTX/94ee8b5ffa8002ae979ee979cdb50895/Product-update-Thumbnail-1.png)\n\nReport\n\n###### Cloudflare named a ‘Leader’ in Forrester Wave for Edge Development Platforms for 2026\n\n[Read report](https://www.cloudflare.com/lp/forrester-wave-edp-2026/)  \n\n![Thumbnail - Insight - Template 1 Lightbulb](https://www.cloudflare.com/cdn-cgi/image/format=auto/https://cf-assets.www.cloudflare.com/v2/image/qah4sakhoh4onb8r1b4vnav162/thumbnail_insights-1.png)\n\nReport\n\n###### 2026 Cloudflare Threat Report\n\n[Read report](https://www.cloudflare.com/lp/threat-report-2026/)  \n\n ![Test Drive](https://cf-assets.www.cloudflare.com/dzlvafdwdttg/5Xv9FKPcd7u6bPz9A2KJrN/7d5bf5fc076c8d35bfbba2a73f2e9653/Virtual-workshop-Thumbnail-2.png)\n\nWorkshop\n\n###### Attend a Test Drive workshop to get hands-on experience with Cloudflare products\n\n[Register](https://www.cloudflare.com/lp/test-drive-request-info/)  \n\n ![Forrester Wave Email Security](https://cf-assets.www.cloudflare.com/dzlvafdwdttg/5FzlGx8oeekggGYq5wTwfG/cade515fb39ed01f9466793934877b17/Press-releases-Thumbnail-1.png)\n\nPress release\n\n###### Cloudflare strengthens content offering to AI companies with acquisition of Human Native\n\n[Read report](https://www.cloudflare.com/press/press-releases/2026/cloudflare-strengthens-content-offering-to-ai-companies-with-acquisition-of-human-native/)  \n\n ![Cloudflare acquires Astro to accelerate the future of high-performance web development](https://cf-assets.www.cloudflare.com/dzlvafdwdttg/1md9HF80UDFu5OiEzBFIl9/2fd375ffe350f7c8014c0926666656c5/Press-releases-Thumbnail-2.png)\n\nPress release\n\n###### Cloudflare acquires Astro to accelerate the future of high-performance web development\n\n[Read report](https://www.cloudflare.com/press/press-releases/2026/cloudflare-acquires-astro-to-accelerate-the-future-of-high-performance-web-development/)  \n\n ![2025 Forrester Wave Serverless](https://cf-assets.www.cloudflare.com/dzlvafdwdttg/5UKhWtyRcBaq4XnsrFz50O/5c157133914ae543a213581dfbae997f/Product-update-Thumbnail_3__1_.png)\n\nReport\n\n###### Cloudflare 2025 Impact Report\n\n[Read report](https://cfl.re/impact-report-2025)  \n\n ![Background image](https://cf-assets.www.cloudflare.com/dzlvafdwdttg/5FzlGx8oeekggGYq5wTwfG/cade515fb39ed01f9466793934877b17/Press-releases-Thumbnail-1.png)\n\nPress release\n\n###### Cloudflare to acquire Replicate to build the most seamless AI Cloud for developers\n\n[Read report](https://www.cloudflare.com/press/press-releases/2025/cloudflare-to-acquire-replicate-to-build-the-most-seamless-ai-cloud-for-developers/)  \n\n ![2025 Gartner CNAP MQ](https://cf-assets.www.cloudflare.com/dzlvafdwdttg/1md9HF80UDFu5OiEzBFIl9/2fd375ffe350f7c8014c0926666656c5/Press-releases-Thumbnail-2.png)\n\nReport\n\n###### Cloudflare named a Challenger in 2025 Gartner® Magic Quadrant™ for CNAP\n\n[Read report](https://www.cloudflare.com/lp/gartner-magic-quadrant-cnap-2025/)  \n\n ![2025 Gartner® Magic Quadrant™](https://cf-assets.www.cloudflare.com/dzlvafdwdttg/1md9HF80UDFu5OiEzBFIl9/2fd375ffe350f7c8014c0926666656c5/Press-releases-Thumbnail-2.png)\n\nReport\n\n###### Cloudflare named a Visionary in 2025 Gartner® Magic Quadrant™ for SASE Platforms\n\n[Read report](https://www.cloudflare.com/lp/gartner-magic-quadrant-sase-platforms-2025/)  \n\n ![Security signals](https://cf-assets.www.cloudflare.com/dzlvafdwdttg/1YoyUXhrcRl7z9EY8FstSL/411645472ac080535a228e7516b948b5/Insights-Thumbnail-5.png)\n\nInsight\n\n###### Rethink what cyber resilience really means\n\n[Read](https://www.cloudflare.com/the-net/security-signals/building-cyber-resiliency/)  \n\n ![Background image](https://cf-assets.www.cloudflare.com/dzlvafdwdttg/6awcN9lu1EaqsPyIZyUhvm/66f4ccb9fdee71e9140dbd06e232ef46/Insights-Thumbnail-2.png)\n\nInsight\n\n###### NCR Voyix on how a service mindset delivers better security outcomes\n\n[Read](https://www.cloudflare.com/the-net/illuminate/successful-security-team/)  \n\n ![Background image](https://cf-assets.www.cloudflare.com/dzlvafdwdttg/4luS9YlHLRsHuNfXKnAtX0/2e02e879bc8db2f8094e695f90913c8c/Insights-Thumbnail-1.png)\n\nInsight\n\n###### CSO Grant Bourzikas shares strategies to curb AI misinformation\n\n[Read](https://www.cloudflare.com/the-net/building-cyber-resilience/ai-generated-misinformation/)  \n\n ![Background image](https://cf-assets.www.cloudflare.com/dzlvafdwdttg/1YoyUXhrcRl7z9EY8FstSL/411645472ac080535a228e7516b948b5/Insights-Thumbnail-5.png)\n\nInsight\n\n###### Cloudflare CIO, Mike Hamilton on how AI is disrupting software purchases\n\n[Read](https://www.cloudflare.com/the-net/game-on/winning-ai-software/)  \n\n ![Background image](https://cf-assets.www.cloudflare.com/dzlvafdwdttg/5Ajsy3A2Q06FMVWFKRt7sW/a660743fb1d69461a1428947e192ed92/Ebook-Thumbnail_1.png)\n\neBook\n\n###### Protect modern organizations from threats without stifling innovation\n\n[Read](https://www.cloudflare.com/lp/everywhere-security-ebook/)  \n\n ![Background image](https://cf-assets.www.cloudflare.com/dzlvafdwdttg/3qqYuBpaHHPBIUkGnva4Gn/58ba0fc8b29397dde2a54652dab4db20/Whitepaper-Thumbnail-1.png)\n\nWhitepaper\n\n###### 3 challenges of securing and connecting application services\n\n[Read](https://www.cloudflare.com/lp/3-challenges-of-securing-and-connecting-application-services/)  \n\n ![Background image](https://cf-assets.www.cloudflare.com/dzlvafdwdttg/EoU2YBWrhcBEKjrNlxvK9/dd17103ce3d1feb27fc478a101bedbbf/Ebook-Thumbnail-_2.png)\n\neBook\n\n###### Explore more ebooks in Cloudflare's Resource Hub\n\n[Read](https://www.cloudflare.com/resource-hub/?resourcetype=Ebook)  \n\n ![Background image](https://cf-assets.www.cloudflare.com/dzlvafdwdttg/6MWjkO0im0GzSAgiGazIm3/09bc62dfa60dbef02287ed5e4b07f44e/Ebook-Thumbnail-3.png)\n\neBook\n\n###### Increase developer velocity with a connectivity cloud\n\n[Read](https://www.cloudflare.com/lp/increase-developer-velocity-with-a-connectivity-cloud/)  \n\n ![Connect 2026](https://cf-assets.www.cloudflare.com/dzlvafdwdttg/2SCc1vClEOG4egxglJL22X/b958f7530725c10833affa2b0f04dc4b/Event-Thumbnail-2.png)\n\nEvent\n\n###### Registration is now open for Cloudflare Connect 2026\n\n[Learn more](https://www.cloudflare.com/lp/cloudflare-connect-2026/)  \n\n ![App services demo](https://cf-assets.www.cloudflare.com/dzlvafdwdttg/173a1i2FtYEjluy1e9nqPz/d1b53b5c7e583b64ac5e7f87e4912a60/Video-Thumbnail-2.png)\n\nWebinar\n\n###### Join our solutions engineering team for a weekly application services demo\n\n[Register](https://www.cloudflare.com/product-demos/)  \n\n ![Cloudflare events](https://cf-assets.www.cloudflare.com/dzlvafdwdttg/02QH4tKACCGsmFHGHezPg/ec80e33f227c7a74223e58a0eb473036/Event-Thumbnail-1.png)\n\nEvent\n\n###### Learn more about Cloudflare and meet our team at an upcoming event near you\n\n[Register](https://www.cloudflare.com/events/)  \n\n ![Cloudflare webinars](https://cf-assets.www.cloudflare.com/dzlvafdwdttg/5Xv9FKPcd7u6bPz9A2KJrN/7d5bf5fc076c8d35bfbba2a73f2e9653/Virtual-workshop-Thumbnail-2.png)\n\nWebinar\n\n###### Enhance your knowledge and gain new skills with a live or on-demand webinar\n\n[Register](https://www.cloudflare.com/resource-hub/?resourcetype=Webinar)  \n\n ![Security builders](https://cf-assets.www.cloudflare.com/dzlvafdwdttg/173a1i2FtYEjluy1e9nqPz/d1b53b5c7e583b64ac5e7f87e4912a60/Video-Thumbnail-2.png)\n\nEvent\n\n###### Security builders workshop series\n\n[Register](https://www.cloudflare.com/?utm_medium=display&utm_source=direct&utm_campaign=2025-q2-acq-namer-umbrella-ge-he-general-cloudflare)  \n\n ![Security leaders](https://cf-assets.www.cloudflare.com/dzlvafdwdttg/173a1i2FtYEjluy1e9nqPz/d1b53b5c7e583b64ac5e7f87e4912a60/Video-Thumbnail-2.png)\n\nEvent\n\n###### Security leaders forum series\n\n[Register](https://www.cloudflare.com/lp/security-leaders-forum/?utm_medium=display&utm_source=direct&utm_campaign=2025-q2-acq-namer-umbrella-ge-he-general-cloudflare)  \n\n ![Background image](https://cf-assets.www.cloudflare.com/dzlvafdwdttg/2SCc1vClEOG4egxglJL22X/b958f7530725c10833affa2b0f04dc4b/Event-Thumbnail-2.png)\n\nEvent\n\n###### Architecture Workshop Series\n\n[Learn more](https://www.cloudflare.com/lp/architectureworkshops/?utm_medium=display&utm_source=direct&utm_campaign=2025-q2-acq-namer-umbrella-ge-he-general-cloudflare)  \n\n## Get started with the connectivity cloud\n\n ![Security Shield Protection Icon](https://cf-assets.www.cloudflare.com/dzlvafdwdttg/7CvNwSY8XCo90yNwqJkkiX/c476a3043f6bc66918b34c36e5d6533b/security-shield-protection-2.svg)\n\n##### Get started for free\n\nGet easy, instant access to Cloudflare security and performance services.\n\n[Start for free](https://dash.cloudflare.com/sign-up/)  \n\n ![Constellation Icon](https://cf-assets.www.cloudflare.com/dzlvafdwdttg/3o96rYCOx6VOx7F316KwCx/b5d6c97da4994cf2588ed36fd82c0c20/Constellation.svg)\n\n##### Need help choosing?\n\nGet a personalized product recommendation for your specific needs.\n\n[Find the right plan](https://www.cloudflare.com/about-your-website/)  \n\n ![Innovation Thinking Icon ](https://cf-assets.www.cloudflare.com/dzlvafdwdttg/1OnP5oJNO4uAH6f5So09bO/24f8e053ffa56a8099c8ba6a4325743e/innovation-thinking.svg)\n\n##### Talk to an expert\n\nHave questions or want to get a demo? Get in touch with one of our experts.\n\n[Contact us](https://www.cloudflare.com/plans/enterprise/contact/)\n",
  "markdownStats": {
    "images": 9,
    "links": 8,
    "tables": 0,
    "codeBlocks": 0,
    "headings": 29
  },
  "tokens": {
    "htmlTokens": 432945,
    "markdownTokens": 2402,
    "reduction": 430543,
    "reductionPercent": 99
  },
  "score": {
    "score": 55,
    "grade": "D",
    "dimensions": {
      "semanticHtml": {
        "score": 47,
        "weight": 20,
        "grade": "D",
        "checks": {
          "uses_article_or_main": {
            "score": 100,
            "weight": 20,
            "details": "Has <main>"
          },
          "proper_heading_hierarchy": {
            "score": 0,
            "weight": 25,
            "details": "8 heading level skip(s)"
          },
          "semantic_elements": {
            "score": 5,
            "weight": 20,
            "details": "18 semantic elements, 1177 divs (ratio: 2%)"
          },
          "meaningful_alt_texts": {
            "score": 99,
            "weight": 15,
            "details": "75/76 images with meaningful alt text"
          },
          "low_div_nesting": {
            "score": 57,
            "weight": 20,
            "details": "Avg div depth: 9.3, max: 14"
          }
        }
      },
      "contentEfficiency": {
        "score": 51,
        "weight": 25,
        "grade": "D",
        "checks": {
          "token_reduction_ratio": {
            "score": 100,
            "weight": 40,
            "details": "99% token reduction (HTML→Markdown)"
          },
          "content_to_noise_ratio": {
            "score": 0,
            "weight": 30,
            "details": "Content ratio: 0.8% (8303 content chars / 982335 HTML bytes)"
          },
          "minimal_inline_styles": {
            "score": 50,
            "weight": 15,
            "details": "141/4508 elements with inline styles (3.1%)"
          },
          "reasonable_page_weight": {
            "score": 20,
            "weight": 15,
            "details": "HTML size: 959KB"
          }
        }
      },
      "aiDiscoverability": {
        "score": 45,
        "weight": 25,
        "grade": "D",
        "checks": {
          "has_llms_txt": {
            "score": 0,
            "weight": 20,
            "details": "No llms.txt found"
          },
          "has_robots_txt": {
            "score": 100,
            "weight": 10,
            "details": "robots.txt exists"
          },
          "robots_allows_ai_bots": {
            "score": 100,
            "weight": 15,
            "details": "All major AI bots allowed"
          },
          "has_sitemap": {
            "score": 100,
            "weight": 10,
            "details": "Sitemap found"
          },
          "supports_markdown_negotiation": {
            "score": 40,
            "weight": 25,
            "details": "Application level — Content negotiation"
          },
          "has_content_signals": {
            "score": 0,
            "weight": 20,
            "details": "No Content-Signal found (robots.txt or HTTP headers)"
          }
        }
      },
      "structuredData": {
        "score": 70,
        "weight": 15,
        "grade": "C",
        "checks": {
          "has_schema_org": {
            "score": 0,
            "weight": 30,
            "details": "No JSON-LD / Schema.org found"
          },
          "has_open_graph": {
            "score": 100,
            "weight": 25,
            "details": "All OG tags present"
          },
          "has_meta_description": {
            "score": 100,
            "weight": 20,
            "details": "Meta description: 112 chars"
          },
          "has_canonical_url": {
            "score": 100,
            "weight": 15,
            "details": "Canonical URL present"
          },
          "has_lang_attribute": {
            "score": 100,
            "weight": 10,
            "details": "lang=\"en-us\""
          }
        }
      },
      "accessibility": {
        "score": 75,
        "weight": 15,
        "grade": "B",
        "checks": {
          "content_without_js": {
            "score": 100,
            "weight": 40,
            "details": "Content available without JavaScript"
          },
          "reasonable_page_size": {
            "score": 40,
            "weight": 30,
            "details": "Page size: 959KB"
          },
          "fast_content_position": {
            "score": 75,
            "weight": 30,
            "details": "Main content starts at 25% of HTML"
          }
        }
      }
    }
  },
  "recommendations": [
    {
      "id": "add_llms_txt",
      "priority": "critical",
      "category": "aiDiscoverability",
      "titleKey": "rec.add_llms_txt.title",
      "descriptionKey": "rec.add_llms_txt.description",
      "howToKey": "rec.add_llms_txt.howto",
      "effort": "quick-win",
      "estimatedImpact": 10,
      "checkScore": 0,
      "checkDetails": "No llms.txt found"
    },
    {
      "id": "fix_heading_hierarchy",
      "priority": "critical",
      "category": "semanticHtml",
      "titleKey": "rec.fix_heading_hierarchy.title",
      "descriptionKey": "rec.fix_heading_hierarchy.description",
      "howToKey": "rec.fix_heading_hierarchy.howto",
      "effort": "quick-win",
      "estimatedImpact": 6,
      "checkScore": 0,
      "checkDetails": "8 heading level skip(s)"
    },
    {
      "id": "improve_content_ratio",
      "priority": "critical",
      "category": "contentEfficiency",
      "titleKey": "rec.improve_content_ratio.title",
      "descriptionKey": "rec.improve_content_ratio.description",
      "howToKey": "rec.improve_content_ratio.howto",
      "effort": "moderate",
      "estimatedImpact": 6,
      "checkScore": 0,
      "checkDetails": "Content ratio: 0.8% (8303 content chars / 982335 HTML bytes)"
    },
    {
      "id": "add_content_signals",
      "priority": "critical",
      "category": "aiDiscoverability",
      "titleKey": "rec.add_content_signals.title",
      "descriptionKey": "rec.add_content_signals.description",
      "howToKey": "rec.add_content_signals.howto",
      "effort": "quick-win",
      "estimatedImpact": 5,
      "checkScore": 0,
      "checkDetails": "No Content-Signal found (robots.txt or HTTP headers)"
    },
    {
      "id": "add_schema_org",
      "priority": "high",
      "category": "structuredData",
      "titleKey": "rec.add_schema_org.title",
      "descriptionKey": "rec.add_schema_org.description",
      "howToKey": "rec.add_schema_org.howto",
      "effort": "moderate",
      "estimatedImpact": 6,
      "checkScore": 0,
      "checkDetails": "No JSON-LD / Schema.org found"
    },
    {
      "id": "add_markdown_negotiation",
      "priority": "high",
      "category": "aiDiscoverability",
      "titleKey": "rec.add_markdown_negotiation.title",
      "descriptionKey": "rec.add_markdown_negotiation.description",
      "howToKey": "rec.add_markdown_negotiation.howto",
      "effort": "significant",
      "estimatedImpact": 6,
      "checkScore": 40,
      "checkDetails": "Application level — Content negotiation"
    },
    {
      "id": "add_semantic_elements",
      "priority": "high",
      "category": "semanticHtml",
      "titleKey": "rec.add_semantic_elements.title",
      "descriptionKey": "rec.add_semantic_elements.description",
      "howToKey": "rec.add_semantic_elements.howto",
      "effort": "moderate",
      "estimatedImpact": 5,
      "checkScore": 5,
      "checkDetails": "18 semantic elements, 1177 divs (ratio: 2%)"
    },
    {
      "id": "reduce_page_size",
      "priority": "high",
      "category": "accessibility",
      "titleKey": "rec.reduce_page_size.title",
      "descriptionKey": "rec.reduce_page_size.description",
      "howToKey": "rec.reduce_page_size.howto",
      "effort": "moderate",
      "estimatedImpact": 4,
      "checkScore": 40,
      "checkDetails": "Page size: 959KB"
    },
    {
      "id": "reduce_page_weight",
      "priority": "high",
      "category": "contentEfficiency",
      "titleKey": "rec.reduce_page_weight.title",
      "descriptionKey": "rec.reduce_page_weight.description",
      "howToKey": "rec.reduce_page_weight.howto",
      "effort": "significant",
      "estimatedImpact": 4,
      "checkScore": 20,
      "checkDetails": "HTML size: 959KB"
    },
    {
      "id": "remove_inline_styles",
      "priority": "medium",
      "category": "contentEfficiency",
      "titleKey": "rec.remove_inline_styles.title",
      "descriptionKey": "rec.remove_inline_styles.description",
      "howToKey": "rec.remove_inline_styles.howto",
      "effort": "moderate",
      "estimatedImpact": 3,
      "checkScore": 50,
      "checkDetails": "141/4508 elements with inline styles (3.1%)"
    }
  ],
  "llmsTxtPreview": "# cloudflare.com\n\n> Make employees, applications and networks faster and more secure everywhere, while reducing complexity and cost.\n\n## Main\n- [Connect, protect, and build everywhere](https://www.cloudflare.com/): Make employees, applications and networks faster and more secure everywhere, while reducing complexity and cost.\n- [Accelerate performance](https://www.cloudflare.com/application-services/products/cdn/)\n- [Optimize web experience](https://www.cloudflare.com/application-services/products/website-optimization/)\n- [Secure web apps and APIs](https://www.cloudflare.com/application-services/products/api-shield/)\n- [WAN modernization](https://www.cloudflare.com/sase/products/wan/)\n- [Demos](https://www.cloudflare.com/product-demos/)\n- [Zero trust network access](https://www.cloudflare.com/sase/products/access/)\n- [Secure web gateway](https://www.cloudflare.com/sase/products/gateway/)\n- [Email security](https://www.cloudflare.com/sase/products/email-security/)\n- [Application security](https://www.cloudflare.com/application-services/products/)\n- [Web application firewall](https://www.cloudflare.com/application-services/products/waf/)\n- [Bot management](https://www.cloudflare.com/application-services/products/bot-management/)\n- [DNS](https://www.cloudflare.com/application-services/products/dns/)\n- [Smart routing](https://www.cloudflare.com/application-services/products/argo-smart-routing/)\n- [Load balancing](https://www.cloudflare.com/application-services/products/load-balancing/)\n- [Networking](https://www.cloudflare.com/network-services/products/)\n- [L3/4 DDoS protection](https://www.cloudflare.com/network-services/products/magic-transit/)\n- [Firewall-as-a-service](https://www.cloudflare.com/network-services/products/network-firewall/)\n- [Network Interconnect](https://www.cloudflare.com/network-services/products/network-interconnect/)\n- [Domain registrationBuy and manage domains](https://www.cloudflare.com/products/registrar/)\n- [Help me choose](https://www.cloudflare.com/about-your-website/)\n- [Artificial Intelligence](https://www.cloudflare.com/developer-platform/products/)\n- [AI GatewayObserve, control AI apps](https://www.cloudflare.com/developer-platform/products/ai-gateway/)\n- [Workers AIRun ML models on our network](https://www.cloudflare.com/developer-platform/products/workers-ai/)\n- [ObservabilityLogs, metrics, and traces](https://www.cloudflare.com/developer-platform/products/workers-observability/)\n- [WorkersBuild, deploy serverless apps](https://www.cloudflare.com/developer-platform/products/workers/)\n- [ImagesTransform, optimize images](https://www.cloudflare.com/developer-platform/products/cloudflare-images/)\n- [RealtimeBuild real-time audio/video apps](https://www.cloudflare.com/developer-platform/products/cloudflare-realtime/)\n- [D1Create serverless SQL databases](https://www.cloudflare.com/developer-platform/products/d1/)\n- [R2Store data without costly egress fees](https://www.cloudflare.com/developer-platform/products/r2/)\n- [Workers KVServerless key-value store for apps](https://www.cloudflare.com/developer-platform/products/workers-kv/)\n- [Service ProvidersDiscover our network of valued service providers](https://www.cloudflare.com/partners/service-providers/)\n- [About Cloudflare](https://www.cloudflare.com/about-overview/)\n- [English (United Kingdom)](https://www.cloudflare.com/en-gb/)\n- [Deutsch](https://www.cloudflare.com/de-de/)\n- [Español (Latinoamérica)](https://www.cloudflare.com/es-la/)\n- [Español (España)](https://www.cloudflare.com/es-es/)\n- [Français](https://www.cloudflare.com/fr-fr/)\n- [Italiano](https://www.cloudflare.com/it-it/)\n- [日本語](https://www.cloudflare.com/ja-jp/)\n- [한국어](https://www.cloudflare.com/ko-kr/)\n\n## Support\n- [Contact sales](https://www.cloudflare.com/plans/enterprise/contact/)\n\n",
  "llmsTxtExisting": null,
  "emergingProtocols": {
    "oauthDiscovery": {
      "exists": false,
      "url": "https://www.cloudflare.com/.well-known/oauth-authorization-server"
    },
    "mcpServerCard": {
      "exists": false,
      "url": "https://www.cloudflare.com/.well-known/mcp.json"
    },
    "a2aAgentCard": {
      "exists": false,
      "url": "https://www.cloudflare.com/.well-known/agent.json"
    },
    "count": 0
  },
  "snippets": [
    {
      "id": "add_llms_txt",
      "title": "Create /llms.txt",
      "description": "Upload this file to your web root. It tells AI agents what your site is about and which pages matter.",
      "language": "markdown",
      "code": "# cloudflare.com\n\n> Make employees, applications and networks faster and more secure everywhere, while reducing complexity and cost.\n\n## Main\n- [Connect, protect, and build everywhere](https://www.cloudflare.com/): Make employees, applications and networks faster and more secure everywhere, while reducing complexity and cost.\n- [Accelerate performance](https://www.cloudflare.com/application-services/products/cdn/)\n- [Optimize web experience](https://www.cloudflare.com/application-services/products/website-optimization/)\n- [Secure web apps and APIs](https://www.cloudflare.com/application-services/products/api-shield/)\n- [WAN modernization](https://www.cloudflare.com/sase/products/wan/)\n- [Demos](https://www.cloudflare.com/product-demos/)\n- [Zero trust network access](https://www.cloudflare.com/sase/products/access/)\n- [Secure web gateway](https://www.cloudflare.com/sase/products/gateway/)\n- [Email security](https://www.cloudflare.com/sase/products/email-security/)\n- [Application security](https://www.cloudflare.com/application-services/products/)\n- [Web application firewall](https://www.cloudflare.com/application-services/products/waf/)\n- [Bot management](https://www.cloudflare.com/application-services/products/bot-management/)\n- [DNS](https://www.cloudflare.com/application-services/products/dns/)\n- [Smart routing](https://www.cloudflare.com/application-services/products/argo-smart-routing/)\n- [Load balancing](https://www.cloudflare.com/application-services/products/load-balancing/)\n- [Networking](https://www.cloudflare.com/network-services/products/)\n- [L3/4 DDoS protection](https://www.cloudflare.com/network-services/products/magic-transit/)\n- [Firewall-as-a-service](https://www.cloudflare.com/network-services/products/network-firewall/)\n- [Network Interconnect](https://www.cloudflare.com/network-services/products/network-interconnect/)\n- [Domain registrationBuy and manage domains](https://www.cloudflare.com/products/registrar/)\n- [Help me choose](https://www.cloudflare.com/about-your-website/)\n- [Artificial Intelligence](https://www.cloudflare.com/developer-platform/products/)\n- [AI GatewayObserve, control AI apps](https://www.cloudflare.com/developer-platform/products/ai-gateway/)\n- [Workers AIRun ML models on our network](https://www.cloudflare.com/developer-platform/products/workers-ai/)\n- [ObservabilityLogs, metrics, and traces](https://www.cloudflare.com/developer-platform/products/workers-observability/)\n- [WorkersBuild, deploy serverless apps](https://www.cloudflare.com/developer-platform/products/workers/)\n- [ImagesTransform, optimize images](https://www.cloudflare.com/developer-platform/products/cloudflare-images/)\n- [RealtimeBuild real-time audio/video apps](https://www.cloudflare.com/developer-platform/products/cloudflare-realtime/)\n- [D1Create serverless SQL databases](https://www.cloudflare.com/developer-platform/products/d1/)\n- [R2Store data without costly egress fees](https://www.cloudflare.com/developer-platform/products/r2/)\n- [Workers KVServerless key-value store for apps](https://www.cloudflare.com/developer-platform/products/workers-kv/)\n- [Service ProvidersDiscover our network of valued service providers](https://www.cloudflare.com/partners/service-providers/)\n- [About Cloudflare](https://www.cloudflare.com/about-overview/)\n- [English (United Kingdom)](https://www.cloudflare.com/en-gb/)\n- [Deutsch](https://www.cloudflare.com/de-de/)\n- [Español (Latinoamérica)](https://www.cloudflare.com/es-la/)\n- [Español (España)](https://www.cloudflare.com/es-es/)\n- [Français](https://www.cloudflare.com/fr-fr/)\n- [Italiano](https://www.cloudflare.com/it-it/)\n- [日本語](https://www.cloudflare.com/ja-jp/)\n- [한국어](https://www.cloudflare.com/ko-kr/)\n\n## Support\n- [Contact sales](https://www.cloudflare.com/plans/enterprise/contact/)\n\n",
      "filename": "/llms.txt"
    },
    {
      "id": "fix_heading_hierarchy",
      "title": "Fix heading hierarchy",
      "description": "Your page has 1 <h1> elements. Keep only one. Demote the rest to <h2>.",
      "language": "html",
      "code": "<!-- Keep only one <h1> per page -->\n<h1>Connect, protect, and build everywhere</h1>",
      "filename": "<main> or <article>"
    },
    {
      "id": "add_schema_org",
      "title": "Add Schema.org JSON-LD",
      "description": "Structured data helps AI agents understand the type, author, and purpose of your content.",
      "language": "html",
      "code": "<script type=\"application/ld+json\">\n{\n  \"@context\": \"https://schema.org\",\n  \"@type\": \"WebPage\",\n  \"name\": \"Connect, protect, and build everywhere\",\n  \"description\": \"Make employees, applications and networks faster and more secure everywhere, while reducing complexity and cost.\",\n  \"url\": \"https://www.cloudflare.com/\",\n  \"inLanguage\": \"en-us\"\n}\n</script>",
      "filename": "<head>"
    },
    {
      "id": "add_content_signals",
      "title": "Add Content-Signal directives",
      "description": "Content-Signal tells AI agents how they may use your content. The canonical location is robots.txt, but you can also expose it as an HTTP header from any stack.",
      "language": "txt",
      "code": "User-agent: *\nContent-Signal: search=yes, ai-input=yes, ai-train=no",
      "filename": "/robots.txt",
      "stacks": [
        {
          "id": "robots",
          "label": "robots.txt",
          "language": "txt",
          "filename": "/robots.txt",
          "code": "User-agent: *\nContent-Signal: search=yes, ai-input=yes, ai-train=no"
        },
        {
          "id": "nginx",
          "label": "Nginx",
          "language": "nginx",
          "filename": "server block",
          "code": "# Inside your server { } block:\nadd_header Content-Signal \"search=yes, ai-input=yes, ai-train=no\" always;"
        },
        {
          "id": "apache",
          "label": "Apache",
          "language": "apache",
          "filename": ".htaccess",
          "code": "# In .htaccess (or VirtualHost):\nHeader set Content-Signal \"search=yes, ai-input=yes, ai-train=no\""
        },
        {
          "id": "wordpress",
          "label": "WordPress",
          "language": "php",
          "filename": "functions.php",
          "code": "<?php\n// In your theme's functions.php or a small mu-plugin\nadd_action('send_headers', function () {\n    header('Content-Signal: search=yes, ai-input=yes, ai-train=no');\n});\n\n// Optional: also append the directive to the dynamic robots.txt\nadd_filter('robots_txt', function ($output) {\n    return $output . \"\\nContent-Signal: search=yes, ai-input=yes, ai-train=no\\n\";\n}, 10, 1);"
        },
        {
          "id": "nextjs",
          "label": "Next.js",
          "language": "typescript",
          "filename": "middleware.ts",
          "code": "// middleware.ts (Next.js 13+ App Router or Pages Router)\nimport { NextResponse } from 'next/server';\nexport function middleware() {\n  const res = NextResponse.next();\n  res.headers.set(\n    'Content-Signal',\n    'search=yes, ai-input=yes, ai-train=no'\n  );\n  return res;\n}\nexport const config = { matcher: '/:path*' };"
        },
        {
          "id": "cloudflare",
          "label": "Cloudflare Workers",
          "language": "javascript",
          "filename": "worker.js",
          "code": "// Cloudflare Worker that proxies your origin and adds the header\nexport default {\n  async fetch(request, env, ctx) {\n    const res = await fetch(request);\n    const newRes = new Response(res.body, res);\n    newRes.headers.set(\n      'Content-Signal',\n      'search=yes, ai-input=yes, ai-train=no'\n    );\n    return newRes;\n  },\n};"
        },
        {
          "id": "express",
          "label": "Express / Fastify",
          "language": "javascript",
          "filename": "server.js",
          "code": "// Express\napp.use((req, res, next) => {\n  res.setHeader('Content-Signal', 'search=yes, ai-input=yes, ai-train=no');\n  next();\n});\n\n// Fastify\nfastify.addHook('onSend', (request, reply, payload, done) => {\n  reply.header('Content-Signal', 'search=yes, ai-input=yes, ai-train=no');\n  done();\n});"
        }
      ]
    },
    {
      "id": "add_markdown_negotiation",
      "title": "Support Markdown for Agents",
      "description": "Let AI agents request a clean Markdown version of any page via content negotiation, .md alternate URLs, link tags or Link headers.",
      "language": "html",
      "code": "<!-- Mechanism 3: link tag advertising the .md alternate -->\n<link rel=\"alternate\" type=\"text/markdown\" href=\"/page.md\">",
      "filename": "<head>",
      "stacks": [
        {
          "id": "html",
          "label": "HTML <head>",
          "language": "html",
          "filename": "<head>",
          "code": "<!-- Mechanism 3: link tag advertising the .md alternate -->\n<link rel=\"alternate\" type=\"text/markdown\" href=\"/page.md\">"
        },
        {
          "id": "express",
          "label": "Express",
          "language": "javascript",
          "filename": "server.js",
          "code": "// Mechanisms 1 + 4: content negotiation + Link header\napp.get('/page', (req, res) => {\n  res.setHeader('Vary', 'Accept');\n  res.setHeader('Link', '</page.md>; rel=\"alternate\"; type=\"text/markdown\"');\n  if ((req.headers.accept || '').includes('text/markdown')) {\n    res.type('text/markdown; charset=utf-8');\n    return res.send(renderMarkdown('page'));\n  }\n  res.render('page');\n});"
        },
        {
          "id": "fastify",
          "label": "Fastify",
          "language": "javascript",
          "filename": "server.js",
          "code": "// Mechanisms 1 + 4: content negotiation + Link header\nfastify.get('/page', async (req, reply) => {\n  reply.header('Vary', 'Accept');\n  reply.header('Link', '</page.md>; rel=\"alternate\"; type=\"text/markdown\"');\n  if ((req.headers.accept || '').includes('text/markdown')) {\n    return reply.type('text/markdown; charset=utf-8').send(renderMarkdown('page'));\n  }\n  return reply.view('/page.ejs');\n});"
        },
        {
          "id": "nextjs",
          "label": "Next.js",
          "language": "typescript",
          "filename": "app/page/route.ts",
          "code": "// Next.js App Router — Route Handler returning Markdown\nimport { NextRequest } from 'next/server';\nimport { renderMarkdown } from '@/lib/md';\nexport async function GET(req: NextRequest) {\n  const accept = req.headers.get('accept') || '';\n  if (accept.includes('text/markdown')) {\n    return new Response(await renderMarkdown('page'), {\n      headers: {\n        'Content-Type': 'text/markdown; charset=utf-8',\n        'Vary': 'Accept',\n      },\n    });\n  }\n  // Fall through to the page component\n  return new Response(null, { status: 404 });\n}"
        },
        {
          "id": "wordpress",
          "label": "WordPress",
          "language": "php",
          "filename": "functions.php",
          "code": "<?php\n// Mechanism 1: respond to Accept: text/markdown on the same URL\nadd_action('template_redirect', function () {\n    if (!is_singular()) return;\n    $accept = $_SERVER['HTTP_ACCEPT'] ?? '';\n    if (strpos($accept, 'text/markdown') === false) return;\n    header('Content-Type: text/markdown; charset=utf-8');\n    header('Vary: Accept');\n    $post = get_queried_object();\n    echo \"# \" . get_the_title($post) . \"\\n\\n\";\n    echo wp_strip_all_tags(apply_filters('the_content', $post->post_content));\n    exit;\n});"
        },
        {
          "id": "static",
          "label": "Hugo / Jekyll / Astro",
          "language": "txt",
          "filename": "static/page.md",
          "code": "# Mechanism 2: serve .md alongside .html\n# Hugo: place page.md in /static/ — built unchanged\n# Jekyll: drop page.md in /assets/ — copied as-is\n# Astro: src/pages/page.md.ts that exports a GET returning markdown\n\n# Then advertise with mechanism 3 in <head>:\n#   <link rel=\"alternate\" type=\"text/markdown\" href=\"/page.md\">"
        }
      ]
    }
  ]
}

API를 사용하여 프로그래밍 방식으로 가져올 수 있습니다 (곧 출시)

이 JSON은 내부용입니다 — Markdown 및 llms.txt 파일과 달리 사이트에 업로드하기 위한 것이 아닙니다. 시간에 따른 점수 추적을 위한 기준값으로 저장하거나, 개발팀과 공유하거나, CI/CD 파이프라인에 통합하세요.

결과 공유

Twitter LinkedIn

배지 삽입

이 배지를 사이트에 추가하세요. AI 준비도 점수가 변경되면 자동으로 업데이트됩니다.

AgentReady.md score for www.cloudflare.com
Script 권장
<script src="https://agentready.md/badge.js" data-id="7adfb706-0259-4b78-8f6d-97cbcecf586a" data-domain="www.cloudflare.com"></script>
Markdown
[![AgentReady.md score for www.cloudflare.com](https://agentready.md/badge/www.cloudflare.com.svg)](https://agentready.md/ko/r/7adfb706-0259-4b78-8f6d-97cbcecf586a)

곧 출시: 전체 도메인 분석

전체 도메인을 크롤링하고, llms.txt를 생성하고, AI 준비도 점수를 시간에 따라 모니터링하세요. 대기자 명단에 등록하여 알림을 받으세요.

명단에 등록되었습니다! 서비스 출시 시 알려드리겠습니다.