Проверенный сертификат AgentReady.md
Выдан sig: 1dc0a891b32e9499 Проверить →

Проанализированный URL

https://fiyatlari.pro

Анализировать другой URL

Оценка AI-Ready

71 / C

Удовлетворительно

из 100

Экономия токенов

HTML-токены 12.366
Markdown-токены 1383
Экономия 89%

Разбивка оценки

Семантический HTML 84/100
Эффективность контента 94/100
Обнаруживаемость ИИ 25/100
Структурированные данные 62/100
Доступность 100/100

Новые протоколы

Обнаружено 1 из 3

Well-known эндпоинты, которые ищут ИИ-агенты. Обнаружено — значит агент может автоматически найти и подключиться к вашему сервису.

  • OAuth Discovery RFC 8414
    /.well-known/oauth-authorization-server
    • issuer: https://fiyatlari.pro
    • token_endpoint: https://fiyatlari.pro/oauth/token
    • 2 grant type(s)
  • MCP Server Card Anthropic
    /.well-known/mcp.json
  • A2A Agent Card Google
    /.well-known/agent.json

На вашем сайте нет файла llms.txt. Это формирующийся стандарт для помощи ИИ-агентам в понимании структуры вашего сайта.

Как внедрить

Создайте файл /llms.txt в соответствии со спецификацией llmstxt.org. Включите описание сайта и ссылки на ваши ключевые страницы.

Ваш сайт не поддерживает Markdown for Agents. Этот стандарт Cloudflare позволяет ИИ-агентам запрашивать контент в формате markdown, сокращая использование токенов на ~80%.

Как внедрить

Реализуйте одно или несколько: (1) Отвечать на Accept: text/markdown контентом в формате markdown. (2) Обслуживать URL с .md (например, /page.md). (3) Добавить теги <link rel="alternate" type="text/markdown">. (4) Добавить HTTP-заголовки Link для обнаружения markdown.

{\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# "}] }'>

Карта сайта не найдена. Sitemap помогает ИИ-агентам обнаруживать все страницы вашего сайта.

Как внедрить

Создайте /sitemap.xml со списком всех ваших публичных страниц. Большинство CMS-платформ могут генерировать его автоматически.

Директивы Content-Signal не найдены. Они сообщают ИИ-агентам, как можно использовать ваш контент (поисковая индексация, ИИ-ввод, данные для обучения). Рекомендуемое расположение — robots.txt.

Как внедрить

Добавьте Content-Signal в ваш robots.txt: User-agent: *\nContent-Signal: search=yes, ai-input=yes, ai-train=no. Также можно добавить как HTTP-заголовок в markdown-ответах.

{\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});"}] }'>

Ваша страница в значительной степени полагается на элементы <div>. Семантические элементы, такие как <section>, <nav>, <header>, <footer> и <aside>, обеспечивают осмысленную структуру для ИИ-агентов.

Как внедрить

Замените общие контейнеры <div> подходящими семантическими элементами. Используйте <section> для тематических групп, <nav> для навигации, <header>/<footer> для верхних и нижних колонтитулов страниц и разделов.

Канонический URL не найден. Он помогает ИИ-агентам определить предпочтительную версию страницы и избежать дублирования контента.

Как внедрить

Добавьте тег <link rel="canonical" href="..."> с каноническим URL страницы.

Отсутствуют или неполные теги Open Graph. OG-теги помогают ИИ-агентам (и социальным платформам) понять заголовок, описание и изображение вашей страницы.

Как внедрить

Добавьте мета-теги og:title, og:description и og:image в <head> вашей страницы.

post_content), 30);\n $image = get_the_post_thumbnail_url($post, 'large') ?: 'https://yoursite.com/og-image.jpg';\n $url = get_permalink($post);\n printf('' . \"\\n\", esc_attr($title));\n printf('' . \"\\n\", esc_attr($desc));\n printf('' . \"\\n\", esc_url($image));\n printf('' . \"\\n\", esc_url($url));\n echo '' . \"\\n\";\n}, 5);"},{"id":"nextjs","label":"Next.js","language":"typescript","filename":"app/page.tsx","code":"// Next.js App Router — Metadata API\nimport type { Metadata } from 'next';\n\nexport const metadata: Metadata = {\n title: \"Fiyatları Pro — Fiyat Karşılaştırma Platformu\",\n description: \"Türkiye'nin en kapsamlı fiyat karşılaştırma platformu. Ajanslar, freelancerlar ve hizmetler arasında en uygun fiyatı bulun.\",\n openGraph: {\n title: \"Fiyatları Pro — Fiyat Karşılaştırma Platformu\",\n description: \"Türkiye'nin en kapsamlı fiyat karşılaştırma platformu. Ajanslar, freelancerlar ve hizmetler arasında en uygun fiyatı bulun.\",\n url: \"https://fiyatlari.pro\",\n images: [\"https://yoursite.com/og-image.jpg\"],\n type: 'website',\n },\n};"}] }'>
Markdown-токены: 1383
## Fiyatları Pro — Karşılaştır, En Uygun Fiyatı Bul

Platformdaki fiyat karşılaştırma projelerini keşfedin. Güncel fiyatları karşılaştırın, en doğru kararı verin.

## Fiyat Karşılaştırma Projeleri

Platformdaki en son eklenen fiyat karşılaştırma projelerini keşfedin.

1 / 2

[

TE

### Compare Test Prices & Find the Best Deals Online

test.fiyatlari.pro

Discover and compare the best prices for Test products. Save money with top deals and trusted price comparisons.

test test price comparison best test deals cheap test +1

20.04.2026 Detayları Gör

](https://fiyatlari.pro/list/test)[

FF

### Ff Fiyatı

ff.fiyatlari.pro

Ff fiyatları, ff fiyat karşılaştırması ve güncel ff fiyat bilgileri. En uygun ff fiyatlarını karşılaştırın.

Ff Ff fiyat Ff fiyatları ff fiyat karşılaştırma +2

20.04.2026 Detayları Gör

](https://fiyatlari.pro/list/ff)[

M

### M Fiyatı

m.fiyatlari.pro

M fiyatları, m fiyat karşılaştırması ve güncel m fiyat bilgileri. En uygun m fiyatlarını karşılaştırın.

M M fiyat M fiyatları m fiyat karşılaştırma +2

20.04.2026 Detayları Gör

](https://fiyatlari.pro/list/m)[

ET

### Eticaret Fiyat Karşılaştırma Platformu | En İyi Fiyatları Bulun

eticaret.fiyatlari.pro

Eticaret ürünlerinde en iyi fiyatları karşılaştırın, indirimleri ve fırsatları yakalayın. Tasarruf yapmak için hemen karşılaştırmaya başlayı

eticaret fiyat karşılaştırma online alışveriş indirim +1

20.04.2026 Detayları Gör

](https://fiyatlari.pro/list/eticaret)[

MO

### Compare Prices in Moscow – Best Deals & Offers 2024

moscow.fiyatlari.pro

Find and compare the best prices on products and services in Moscow. Save money with top deals and discounts for 2024.

Moscow prices Moscow comparison best deals Moscow Moscow offers +1

20.04.2026 Detayları Gör

](https://fiyatlari.pro/list/moscow)[

CA

### Casino Price Comparison – Best Casino Deals & Offers Online

casino.fiyatlari.pro

Compare prices for casinos, find the best deals and exclusive offers. Save money on top casino experiences with our price comparison platfor

casino casino deals price comparison casino offers +1

20.04.2026 Detayları Gör

](https://fiyatlari.pro/list/casino)[

ON

### Compare Online Game Prices – Best Deals & Discounts

online-game.fiyatlari.pro

Find and compare the best prices for online games. Save money with top deals, discounts, and offers on your favorite online games.

online game game price comparison cheap online games online game deals +1

20.04.2026 Detayları Gör

](https://fiyatlari.pro/list/online-game)[

KR

### Kredi Fiyatları Karşılaştırma ve En Uygun Kredi Seçenekleri

kredi-fiyatlar.fiyatlari.pro

Kredi fiyatlarını karşılaştırın, en uygun faiz oranlarını ve kampanyalı kredi seçeneklerini bulun. Avantajlı kredi teklifleri burada!

kredi fiyatları kredi karşılaştırma en uygun kredi kredi faiz oranları +1

20.04.2026 Detayları Gör

](https://fiyatlari.pro/list/kredi-fiyatlar)[

PH

### Compare Phone Prices & Find the Best Deals Online

phone.fiyatlari.pro

Compare prices for phones from top brands and sellers. Find the best deals and save money on your next phone purchase today.

phone mobile phone cell phone phone prices +1

19.04.2026 Detayları Gör

](https://fiyatlari.pro/list/phone)[

MA

### Market Price Comparison & Best Deals | Save on Your Purchases

market.fiyatlari.pro

Compare market prices, find the best deals, and save money on your purchases. Discover top offers and discounts on our price comparison plat

market price comparison best deals discounts +1

19.04.2026 Detayları Gör

](https://fiyatlari.pro/list/market)[

BU

### Bursa Fiyat Karşılaştırma ve En Uygun Fiyatlar

bursa.fiyatlari.pro

Bursa ürünleri ve hizmetleri için en iyi fiyatları karşılaştırın, tasarruf edin!

Bursa fiyat karşılaştırma en uygun fiyat Bursa ürünleri +1

19.04.2026 Detayları Gör

](https://fiyatlari.pro/list/bursa)[

WE

### Web Sitesi Fiyat Karşılaştırması ve En İyi Teklifler

websitesi.fiyatlari.pro

Web sitesi hizmetlerinde en uygun fiyatları karşılaştırın, en iyi teklifleri bulun ve tasarruf edin.

web sitesi web tasarım site fiyatları web sitesi karşılaştırma +1

19.04.2026 Detayları Gör

](https://fiyatlari.pro/list/websitesi)

## En Uygun Fiyatı mı Arıyorsunuz?

Fiyat karşılaştırma projelerini keşfedin. En uygun fiyatı birlikte bulalım.
Fiyatları Pro — Fiyat Karşılaştırma Platformu

[F Fiyatları Pro](https://fiyatlari.pro/)

TR EN ES

# Fiyatları Pro — Karşılaştır, En Uygun Fiyatı Bul

 Ara

Platformdaki fiyat karşılaştırma projelerini keşfedin. Güncel fiyatları karşılaştırın, en doğru kararı verin.

## Fiyat Karşılaştırma Projeleri

Platformdaki en son eklenen fiyat karşılaştırma projelerini keşfedin.

1 / 2

[

TE

### Compare Test Prices & Find the Best Deals Onlinetest.fiyatlari.pro

Discover and compare the best prices for Test products. Save money with top deals and trusted price comparisons.

test test price comparison best test deals cheap test +1

20.04.2026 Detayları Gör

](https://fiyatlari.pro/list/test)[

FF

### Ff Fiyatıff.fiyatlari.pro

Ff fiyatları, ff fiyat karşılaştırması ve güncel ff fiyat bilgileri. En uygun ff fiyatlarını karşılaştırın.

Ff Ff fiyat Ff fiyatları ff fiyat karşılaştırma +2

20.04.2026 Detayları Gör

](https://fiyatlari.pro/list/ff)[

M

### M Fiyatım.fiyatlari.pro

M fiyatları, m fiyat karşılaştırması ve güncel m fiyat bilgileri. En uygun m fiyatlarını karşılaştırın.

M M fiyat M fiyatları m fiyat karşılaştırma +2

20.04.2026 Detayları Gör

](https://fiyatlari.pro/list/m)[

ET

### Eticaret Fiyat Karşılaştırma Platformu | En İyi Fiyatları Buluneticaret.fiyatlari.pro

Eticaret ürünlerinde en iyi fiyatları karşılaştırın, indirimleri ve fırsatları yakalayın. Tasarruf yapmak için hemen karşılaştırmaya başlayı

eticaret fiyat karşılaştırma online alışveriş indirim +1

20.04.2026 Detayları Gör

](https://fiyatlari.pro/list/eticaret)[

MO

### Compare Prices in Moscow – Best Deals & Offers 2024moscow.fiyatlari.pro

Find and compare the best prices on products and services in Moscow. Save money with top deals and discounts for 2024.

Moscow prices Moscow comparison best deals Moscow Moscow offers +1

20.04.2026 Detayları Gör

](https://fiyatlari.pro/list/moscow)[

CA

### Casino Price Comparison – Best Casino Deals & Offers Onlinecasino.fiyatlari.pro

Compare prices for casinos, find the best deals and exclusive offers. Save money on top casino experiences with our price comparison platfor

casino casino deals price comparison casino offers +1

20.04.2026 Detayları Gör

](https://fiyatlari.pro/list/casino)[

ON

### Compare Online Game Prices – Best Deals & Discountsonline-game.fiyatlari.pro

Find and compare the best prices for online games. Save money with top deals, discounts, and offers on your favorite online games.

online game game price comparison cheap online games online game deals +1

20.04.2026 Detayları Gör

](https://fiyatlari.pro/list/online-game)[

KR

### Kredi Fiyatları Karşılaştırma ve En Uygun Kredi Seçeneklerikredi-fiyatlar.fiyatlari.pro

Kredi fiyatlarını karşılaştırın, en uygun faiz oranlarını ve kampanyalı kredi seçeneklerini bulun. Avantajlı kredi teklifleri burada!

kredi fiyatları kredi karşılaştırma en uygun kredi kredi faiz oranları +1

20.04.2026 Detayları Gör

](https://fiyatlari.pro/list/kredi-fiyatlar)[

PH

### Compare Phone Prices & Find the Best Deals Onlinephone.fiyatlari.pro

Compare prices for phones from top brands and sellers. Find the best deals and save money on your next phone purchase today.

phone mobile phone cell phone phone prices +1

19.04.2026 Detayları Gör

](https://fiyatlari.pro/list/phone)[

MA

### Market Price Comparison & Best Deals | Save on Your Purchasesmarket.fiyatlari.pro

Compare market prices, find the best deals, and save money on your purchases. Discover top offers and discounts on our price comparison plat

market price comparison best deals discounts +1

19.04.2026 Detayları Gör

](https://fiyatlari.pro/list/market)[

BU

### Bursa Fiyat Karşılaştırma ve En Uygun Fiyatlarbursa.fiyatlari.pro

Bursa ürünleri ve hizmetleri için en iyi fiyatları karşılaştırın, tasarruf edin!

Bursa fiyat karşılaştırma en uygun fiyat Bursa ürünleri +1

19.04.2026 Detayları Gör

](https://fiyatlari.pro/list/bursa)[

WE

### Web Sitesi Fiyat Karşılaştırması ve En İyi Tekliflerwebsitesi.fiyatlari.pro

Web sitesi hizmetlerinde en uygun fiyatları karşılaştırın, en iyi teklifleri bulun ve tasarruf edin.

web sitesi web tasarım site fiyatları web sitesi karşılaştırma +1

19.04.2026 Detayları Gör

](https://fiyatlari.pro/list/websitesi)

## En Uygun Fiyatı mı Arıyorsunuz?

Fiyat karşılaştırma projelerini keşfedin. En uygun fiyatı birlikte bulalım.

[Projeleri İncele](https://fiyatlari.pro/list)

Загрузите этот файл как /index.md на ваш сервер, чтобы ИИ-агенты могли получить доступ к чистой версии вашей страницы. Вы также можете настроить согласование контента Accept: text/markdown для автоматической отдачи.

Сгенерированный llms.txt для этой отдельной страницы

Скачать llms.txt
# Web Sitesi Fiyatı

> Türkiye'nin en kapsamlı fiyat karşılaştırma platformu. Ajanslar, freelancerlar ve hizmetler arasında en uygun fiyatı bulun.

## Main
- [Fiyatları Pro — Fiyat Karşılaştırma Platformu](https://fiyatlari.pro): Türkiye'nin en kapsamlı fiyat karşılaştırma platformu. Ajanslar, freelancerlar ve hizmetler arasında en uygun fiyatı bu…
- [Hakkımızda](https://fiyatlari.pro/about)
- [F             Fiyatları Pro](https://fiyatlari.pro/)
- [2](https://fiyatlari.pro/?page=2)
- [KVKK Aydınlatma Metni](https://fiyatlari.pro/kvkk)
- [Yapay Zeka Chat](https://fiyatlari.pro/ai-chat)
- [Profil](https://fiyatlari.pro/profile)

## Legal
- [Gizlilik Politikası](https://fiyatlari.pro/privacy-policy)
- [Kullanım Koşulları](https://fiyatlari.pro/terms)
- [İade ve İptal Politikası](https://fiyatlari.pro/refund-policy)
- [Çerez Politikası](https://fiyatlari.pro/cookie-policy)

## Support
- [İletişim](https://fiyatlari.pro/contact)

Полный llms.txt требует анализа всего домена (скоро появится)

Загрузите этот файл по адресу https://fiyatlari.pro/llms.txt в корень вашего домена. ИИ-агенты, такие как ChatGPT, Claude и Perplexity, проверяют этот файл для понимания структуры вашего сайта.

Семантический HTML

Использует элемент article или main (100/100)

Has <main>

Правильная иерархия заголовков (85/100)

1 heading level skip(s)

Использует семантические HTML-элементы (38/100)

9 semantic elements, 69 divs (ratio: 12%)

Осмысленные альтернативные тексты изображений (100/100)

No images found

Небольшая глубина вложенности div (100/100)

Avg div depth: 1.8, max: 3

Эффективность контента

Хороший коэффициент сокращения токенов (100/100)

89% token reduction (HTML→Markdown)

Хорошее соотношение контента к шуму (80/100)

Content ratio: 25.9% (12514 content chars / 48312 HTML bytes)

Минимум inline-стилей (100/100)

1/360 elements with inline styles (0.3%)

Приемлемый вес страницы (100/100)

HTML size: 47KB

Обнаруживаемость ИИ

Имеет файл llms.txt (0/100)

No llms.txt found

Имеет файл robots.txt (100/100)

robots.txt exists

robots.txt разрешает ИИ-ботов (100/100)

All major AI bots allowed

Имеет sitemap.xml (0/100)

No sitemap found

Поддержка Markdown for Agents (0/100)
&#10007; Accept: text/markdown &#10007; .md URL &#10007; <link> tag &#10007; Link header
Есть Content-Signal (robots.txt или HTTP-заголовки) (0/100)
&#10003; robots.txt &#10003; HTTP header &#10007; Policy

Структурированные данные

Имеет Schema.org / JSON-LD (50/100)

JSON-LD found but basic types: WebSite

Имеет теги Open Graph (67/100)

2/3 OG tags present

Имеет мета-описание (100/100)

Meta description: 123 chars

Имеет канонический URL (0/100)

No canonical URL

Имеет атрибут lang (100/100)

lang="tr"

Доступность

Контент доступен без JavaScript (100/100)

Content available without JavaScript

Приемлемый размер страницы (100/100)

Page size: 47KB

Контент расположен рано в HTML (100/100)

Main content starts at 9% of HTML

{
  "url": "https://fiyatlari.pro",
  "timestamp": 1776715485409,
  "fetch": {
    "mode": "simple",
    "timeMs": 129,
    "htmlSizeBytes": 48312,
    "supportsMarkdown": false,
    "markdownAgents": {
      "contentNegotiation": false,
      "mdUrl": {
        "found": false,
        "url": null
      },
      "linkTag": {
        "found": false,
        "url": null
      },
      "linkHeader": {
        "found": false,
        "url": null
      },
      "responseHeaders": {
        "contentSignal": null,
        "xMarkdownTokens": null,
        "vary": null
      },
      "frontmatter": {
        "present": false,
        "fields": [],
        "level": "none"
      },
      "level": "none"
    },
    "statusCode": 200
  },
  "extraction": {
    "title": "Fiyatları Pro — Fiyat Karşılaştırma Platformu",
    "excerpt": "Türkiye'nin en kapsamlı fiyat karşılaştırma platformu. Ajanslar, freelancerlar ve hizmetler arasında en uygun fiyatı bulun.",
    "byline": null,
    "siteName": "Web Sitesi Fiyatı",
    "lang": "tr",
    "contentLength": 12514,
    "metadata": {
      "description": "Türkiye'nin en kapsamlı fiyat karşılaştırma platformu. Ajanslar, freelancerlar ve hizmetler arasında en uygun fiyatı bulun.",
      "ogTitle": "Fiyatları Pro — Fiyat Karşılaştırma Platformu",
      "ogDescription": "Türkiye'nin en kapsamlı fiyat karşılaştırma platformu. Ajanslar, freelancerlar ve hizmetler arasında en uygun fiyatı bulun.",
      "ogImage": null,
      "ogType": "website",
      "canonical": null,
      "lang": "tr",
      "schemas": [
        {
          "@context": "https://schema.org",
          "@type": "WebSite",
          "name": "Fiyatları Pro — Fiyat Karşılaştırma Platformu",
          "url": "https://fiyatlari.pro",
          "description": "Türkiye'nin en kapsamlı fiyat karşılaştırma platformu. Ürün ve hizmet fiyatlarını karşılaştırın, en uygun fiyatı bulun.",
          "inLanguage": "tr"
        }
      ],
      "robotsMeta": "index, follow",
      "author": null,
      "generator": null,
      "markdownAlternateHref": null
    }
  },
  "markdown": "## Fiyatları Pro — Karşılaştır, En Uygun Fiyatı Bul\n\nPlatformdaki fiyat karşılaştırma projelerini keşfedin. Güncel fiyatları karşılaştırın, en doğru kararı verin.\n\n## Fiyat Karşılaştırma Projeleri\n\nPlatformdaki en son eklenen fiyat karşılaştırma projelerini keşfedin.\n\n1 / 2\n\n[\n\nTE\n\n### Compare Test Prices & Find the Best Deals Online\n\ntest.fiyatlari.pro\n\nDiscover and compare the best prices for Test products. Save money with top deals and trusted price comparisons.\n\ntest test price comparison best test deals cheap test +1\n\n20.04.2026 Detayları Gör\n\n](https://fiyatlari.pro/list/test)[\n\nFF\n\n### Ff Fiyatı\n\nff.fiyatlari.pro\n\nFf fiyatları, ff fiyat karşılaştırması ve güncel ff fiyat bilgileri. En uygun ff fiyatlarını karşılaştırın.\n\nFf Ff fiyat Ff fiyatları ff fiyat karşılaştırma +2\n\n20.04.2026 Detayları Gör\n\n](https://fiyatlari.pro/list/ff)[\n\nM\n\n### M Fiyatı\n\nm.fiyatlari.pro\n\nM fiyatları, m fiyat karşılaştırması ve güncel m fiyat bilgileri. En uygun m fiyatlarını karşılaştırın.\n\nM M fiyat M fiyatları m fiyat karşılaştırma +2\n\n20.04.2026 Detayları Gör\n\n](https://fiyatlari.pro/list/m)[\n\nET\n\n### Eticaret Fiyat Karşılaştırma Platformu | En İyi Fiyatları Bulun\n\neticaret.fiyatlari.pro\n\nEticaret ürünlerinde en iyi fiyatları karşılaştırın, indirimleri ve fırsatları yakalayın. Tasarruf yapmak için hemen karşılaştırmaya başlayı\n\neticaret fiyat karşılaştırma online alışveriş indirim +1\n\n20.04.2026 Detayları Gör\n\n](https://fiyatlari.pro/list/eticaret)[\n\nMO\n\n### Compare Prices in Moscow – Best Deals & Offers 2024\n\nmoscow.fiyatlari.pro\n\nFind and compare the best prices on products and services in Moscow. Save money with top deals and discounts for 2024.\n\nMoscow prices Moscow comparison best deals Moscow Moscow offers +1\n\n20.04.2026 Detayları Gör\n\n](https://fiyatlari.pro/list/moscow)[\n\nCA\n\n### Casino Price Comparison – Best Casino Deals & Offers Online\n\ncasino.fiyatlari.pro\n\nCompare prices for casinos, find the best deals and exclusive offers. Save money on top casino experiences with our price comparison platfor\n\ncasino casino deals price comparison casino offers +1\n\n20.04.2026 Detayları Gör\n\n](https://fiyatlari.pro/list/casino)[\n\nON\n\n### Compare Online Game Prices – Best Deals & Discounts\n\nonline-game.fiyatlari.pro\n\nFind and compare the best prices for online games. Save money with top deals, discounts, and offers on your favorite online games.\n\nonline game game price comparison cheap online games online game deals +1\n\n20.04.2026 Detayları Gör\n\n](https://fiyatlari.pro/list/online-game)[\n\nKR\n\n### Kredi Fiyatları Karşılaştırma ve En Uygun Kredi Seçenekleri\n\nkredi-fiyatlar.fiyatlari.pro\n\nKredi fiyatlarını karşılaştırın, en uygun faiz oranlarını ve kampanyalı kredi seçeneklerini bulun. Avantajlı kredi teklifleri burada!\n\nkredi fiyatları kredi karşılaştırma en uygun kredi kredi faiz oranları +1\n\n20.04.2026 Detayları Gör\n\n](https://fiyatlari.pro/list/kredi-fiyatlar)[\n\nPH\n\n### Compare Phone Prices & Find the Best Deals Online\n\nphone.fiyatlari.pro\n\nCompare prices for phones from top brands and sellers. Find the best deals and save money on your next phone purchase today.\n\nphone mobile phone cell phone phone prices +1\n\n19.04.2026 Detayları Gör\n\n](https://fiyatlari.pro/list/phone)[\n\nMA\n\n### Market Price Comparison & Best Deals | Save on Your Purchases\n\nmarket.fiyatlari.pro\n\nCompare market prices, find the best deals, and save money on your purchases. Discover top offers and discounts on our price comparison plat\n\nmarket price comparison best deals discounts +1\n\n19.04.2026 Detayları Gör\n\n](https://fiyatlari.pro/list/market)[\n\nBU\n\n### Bursa Fiyat Karşılaştırma ve En Uygun Fiyatlar\n\nbursa.fiyatlari.pro\n\nBursa ürünleri ve hizmetleri için en iyi fiyatları karşılaştırın, tasarruf edin!\n\nBursa fiyat karşılaştırma en uygun fiyat Bursa ürünleri +1\n\n19.04.2026 Detayları Gör\n\n](https://fiyatlari.pro/list/bursa)[\n\nWE\n\n### Web Sitesi Fiyat Karşılaştırması ve En İyi Teklifler\n\nwebsitesi.fiyatlari.pro\n\nWeb sitesi hizmetlerinde en uygun fiyatları karşılaştırın, en iyi teklifleri bulun ve tasarruf edin.\n\nweb sitesi web tasarım site fiyatları web sitesi karşılaştırma +1\n\n19.04.2026 Detayları Gör\n\n](https://fiyatlari.pro/list/websitesi)\n\n## En Uygun Fiyatı mı Arıyorsunuz?\n\nFiyat karşılaştırma projelerini keşfedin. En uygun fiyatı birlikte bulalım.\n",
  "fullPageMarkdown": "Fiyatları Pro — Fiyat Karşılaştırma Platformu\n\n[F Fiyatları Pro](https://fiyatlari.pro/)\n\nTR EN ES\n\n# Fiyatları Pro — Karşılaştır, En Uygun Fiyatı Bul\n\n Ara\n\nPlatformdaki fiyat karşılaştırma projelerini keşfedin. Güncel fiyatları karşılaştırın, en doğru kararı verin.\n\n## Fiyat Karşılaştırma Projeleri\n\nPlatformdaki en son eklenen fiyat karşılaştırma projelerini keşfedin.\n\n1 / 2\n\n[\n\nTE\n\n### Compare Test Prices & Find the Best Deals Onlinetest.fiyatlari.pro\n\nDiscover and compare the best prices for Test products. Save money with top deals and trusted price comparisons.\n\ntest test price comparison best test deals cheap test +1\n\n20.04.2026 Detayları Gör\n\n](https://fiyatlari.pro/list/test)[\n\nFF\n\n### Ff Fiyatıff.fiyatlari.pro\n\nFf fiyatları, ff fiyat karşılaştırması ve güncel ff fiyat bilgileri. En uygun ff fiyatlarını karşılaştırın.\n\nFf Ff fiyat Ff fiyatları ff fiyat karşılaştırma +2\n\n20.04.2026 Detayları Gör\n\n](https://fiyatlari.pro/list/ff)[\n\nM\n\n### M Fiyatım.fiyatlari.pro\n\nM fiyatları, m fiyat karşılaştırması ve güncel m fiyat bilgileri. En uygun m fiyatlarını karşılaştırın.\n\nM M fiyat M fiyatları m fiyat karşılaştırma +2\n\n20.04.2026 Detayları Gör\n\n](https://fiyatlari.pro/list/m)[\n\nET\n\n### Eticaret Fiyat Karşılaştırma Platformu | En İyi Fiyatları Buluneticaret.fiyatlari.pro\n\nEticaret ürünlerinde en iyi fiyatları karşılaştırın, indirimleri ve fırsatları yakalayın. Tasarruf yapmak için hemen karşılaştırmaya başlayı\n\neticaret fiyat karşılaştırma online alışveriş indirim +1\n\n20.04.2026 Detayları Gör\n\n](https://fiyatlari.pro/list/eticaret)[\n\nMO\n\n### Compare Prices in Moscow – Best Deals & Offers 2024moscow.fiyatlari.pro\n\nFind and compare the best prices on products and services in Moscow. Save money with top deals and discounts for 2024.\n\nMoscow prices Moscow comparison best deals Moscow Moscow offers +1\n\n20.04.2026 Detayları Gör\n\n](https://fiyatlari.pro/list/moscow)[\n\nCA\n\n### Casino Price Comparison – Best Casino Deals & Offers Onlinecasino.fiyatlari.pro\n\nCompare prices for casinos, find the best deals and exclusive offers. Save money on top casino experiences with our price comparison platfor\n\ncasino casino deals price comparison casino offers +1\n\n20.04.2026 Detayları Gör\n\n](https://fiyatlari.pro/list/casino)[\n\nON\n\n### Compare Online Game Prices – Best Deals & Discountsonline-game.fiyatlari.pro\n\nFind and compare the best prices for online games. Save money with top deals, discounts, and offers on your favorite online games.\n\nonline game game price comparison cheap online games online game deals +1\n\n20.04.2026 Detayları Gör\n\n](https://fiyatlari.pro/list/online-game)[\n\nKR\n\n### Kredi Fiyatları Karşılaştırma ve En Uygun Kredi Seçeneklerikredi-fiyatlar.fiyatlari.pro\n\nKredi fiyatlarını karşılaştırın, en uygun faiz oranlarını ve kampanyalı kredi seçeneklerini bulun. Avantajlı kredi teklifleri burada!\n\nkredi fiyatları kredi karşılaştırma en uygun kredi kredi faiz oranları +1\n\n20.04.2026 Detayları Gör\n\n](https://fiyatlari.pro/list/kredi-fiyatlar)[\n\nPH\n\n### Compare Phone Prices & Find the Best Deals Onlinephone.fiyatlari.pro\n\nCompare prices for phones from top brands and sellers. Find the best deals and save money on your next phone purchase today.\n\nphone mobile phone cell phone phone prices +1\n\n19.04.2026 Detayları Gör\n\n](https://fiyatlari.pro/list/phone)[\n\nMA\n\n### Market Price Comparison & Best Deals | Save on Your Purchasesmarket.fiyatlari.pro\n\nCompare market prices, find the best deals, and save money on your purchases. Discover top offers and discounts on our price comparison plat\n\nmarket price comparison best deals discounts +1\n\n19.04.2026 Detayları Gör\n\n](https://fiyatlari.pro/list/market)[\n\nBU\n\n### Bursa Fiyat Karşılaştırma ve En Uygun Fiyatlarbursa.fiyatlari.pro\n\nBursa ürünleri ve hizmetleri için en iyi fiyatları karşılaştırın, tasarruf edin!\n\nBursa fiyat karşılaştırma en uygun fiyat Bursa ürünleri +1\n\n19.04.2026 Detayları Gör\n\n](https://fiyatlari.pro/list/bursa)[\n\nWE\n\n### Web Sitesi Fiyat Karşılaştırması ve En İyi Tekliflerwebsitesi.fiyatlari.pro\n\nWeb sitesi hizmetlerinde en uygun fiyatları karşılaştırın, en iyi teklifleri bulun ve tasarruf edin.\n\nweb sitesi web tasarım site fiyatları web sitesi karşılaştırma +1\n\n19.04.2026 Detayları Gör\n\n](https://fiyatlari.pro/list/websitesi)\n\n## En Uygun Fiyatı mı Arıyorsunuz?\n\nFiyat karşılaştırma projelerini keşfedin. En uygun fiyatı birlikte bulalım.\n\n[Projeleri İncele](https://fiyatlari.pro/list)\n",
  "markdownStats": {
    "images": 0,
    "links": 14,
    "tables": 0,
    "codeBlocks": 0,
    "headings": 15
  },
  "tokens": {
    "htmlTokens": 12366,
    "markdownTokens": 1383,
    "reduction": 10983,
    "reductionPercent": 89
  },
  "score": {
    "score": 71,
    "grade": "C",
    "dimensions": {
      "semanticHtml": {
        "score": 84,
        "weight": 20,
        "grade": "B",
        "checks": {
          "uses_article_or_main": {
            "score": 100,
            "weight": 20,
            "details": "Has <main>"
          },
          "proper_heading_hierarchy": {
            "score": 85,
            "weight": 25,
            "details": "1 heading level skip(s)"
          },
          "semantic_elements": {
            "score": 38,
            "weight": 20,
            "details": "9 semantic elements, 69 divs (ratio: 12%)"
          },
          "meaningful_alt_texts": {
            "score": 100,
            "weight": 15,
            "details": "No images found"
          },
          "low_div_nesting": {
            "score": 100,
            "weight": 20,
            "details": "Avg div depth: 1.8, max: 3"
          }
        }
      },
      "contentEfficiency": {
        "score": 94,
        "weight": 25,
        "grade": "A",
        "checks": {
          "token_reduction_ratio": {
            "score": 100,
            "weight": 40,
            "details": "89% token reduction (HTML→Markdown)"
          },
          "content_to_noise_ratio": {
            "score": 80,
            "weight": 30,
            "details": "Content ratio: 25.9% (12514 content chars / 48312 HTML bytes)"
          },
          "minimal_inline_styles": {
            "score": 100,
            "weight": 15,
            "details": "1/360 elements with inline styles (0.3%)"
          },
          "reasonable_page_weight": {
            "score": 100,
            "weight": 15,
            "details": "HTML size: 47KB"
          }
        }
      },
      "aiDiscoverability": {
        "score": 25,
        "weight": 25,
        "grade": "F",
        "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": 0,
            "weight": 10,
            "details": "No sitemap found"
          },
          "supports_markdown_negotiation": {
            "score": 0,
            "weight": 25,
            "details": "No Markdown for Agents support detected"
          },
          "has_content_signals": {
            "score": 0,
            "weight": 20,
            "details": "No Content-Signal found (robots.txt or HTTP headers)"
          }
        }
      },
      "structuredData": {
        "score": 62,
        "weight": 15,
        "grade": "C",
        "checks": {
          "has_schema_org": {
            "score": 50,
            "weight": 30,
            "details": "JSON-LD found but basic types: WebSite"
          },
          "has_open_graph": {
            "score": 67,
            "weight": 25,
            "details": "2/3 OG tags present"
          },
          "has_meta_description": {
            "score": 100,
            "weight": 20,
            "details": "Meta description: 123 chars"
          },
          "has_canonical_url": {
            "score": 0,
            "weight": 15,
            "details": "No canonical URL"
          },
          "has_lang_attribute": {
            "score": 100,
            "weight": 10,
            "details": "lang=\"tr\""
          }
        }
      },
      "accessibility": {
        "score": 100,
        "weight": 15,
        "grade": "A",
        "checks": {
          "content_without_js": {
            "score": 100,
            "weight": 40,
            "details": "Content available without JavaScript"
          },
          "reasonable_page_size": {
            "score": 100,
            "weight": 30,
            "details": "Page size: 47KB"
          },
          "fast_content_position": {
            "score": 100,
            "weight": 30,
            "details": "Main content starts at 9% 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": "add_markdown_negotiation",
      "priority": "critical",
      "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": 0,
      "checkDetails": "No Markdown for Agents support detected"
    },
    {
      "id": "add_sitemap",
      "priority": "critical",
      "category": "aiDiscoverability",
      "titleKey": "rec.add_sitemap.title",
      "descriptionKey": "rec.add_sitemap.description",
      "howToKey": "rec.add_sitemap.howto",
      "effort": "quick-win",
      "estimatedImpact": 5,
      "checkScore": 0,
      "checkDetails": "No sitemap found"
    },
    {
      "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_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": 38,
      "checkDetails": "9 semantic elements, 69 divs (ratio: 12%)"
    },
    {
      "id": "add_canonical_url",
      "priority": "high",
      "category": "structuredData",
      "titleKey": "rec.add_canonical_url.title",
      "descriptionKey": "rec.add_canonical_url.description",
      "howToKey": "rec.add_canonical_url.howto",
      "effort": "quick-win",
      "estimatedImpact": 3,
      "checkScore": 0,
      "checkDetails": "No canonical URL"
    },
    {
      "id": "add_open_graph",
      "priority": "medium",
      "category": "structuredData",
      "titleKey": "rec.add_open_graph.title",
      "descriptionKey": "rec.add_open_graph.description",
      "howToKey": "rec.add_open_graph.howto",
      "effort": "quick-win",
      "estimatedImpact": 4,
      "checkScore": 67,
      "checkDetails": "2/3 OG tags present"
    }
  ],
  "llmsTxtPreview": "# Web Sitesi Fiyatı\n\n> Türkiye'nin en kapsamlı fiyat karşılaştırma platformu. Ajanslar, freelancerlar ve hizmetler arasında en uygun fiyatı bulun.\n\n## Main\n- [Fiyatları Pro — Fiyat Karşılaştırma Platformu](https://fiyatlari.pro): Türkiye'nin en kapsamlı fiyat karşılaştırma platformu. Ajanslar, freelancerlar ve hizmetler arasında en uygun fiyatı bu…\n- [Hakkımızda](https://fiyatlari.pro/about)\n- [F             Fiyatları Pro](https://fiyatlari.pro/)\n- [2](https://fiyatlari.pro/?page=2)\n- [KVKK Aydınlatma Metni](https://fiyatlari.pro/kvkk)\n- [Yapay Zeka Chat](https://fiyatlari.pro/ai-chat)\n- [Profil](https://fiyatlari.pro/profile)\n\n## Legal\n- [Gizlilik Politikası](https://fiyatlari.pro/privacy-policy)\n- [Kullanım Koşulları](https://fiyatlari.pro/terms)\n- [İade ve İptal Politikası](https://fiyatlari.pro/refund-policy)\n- [Çerez Politikası](https://fiyatlari.pro/cookie-policy)\n\n## Support\n- [İletişim](https://fiyatlari.pro/contact)\n\n",
  "llmsTxtExisting": null,
  "emergingProtocols": {
    "oauthDiscovery": {
      "exists": true,
      "url": "https://fiyatlari.pro/.well-known/oauth-authorization-server",
      "issuer": "https://fiyatlari.pro",
      "authorizationEndpoint": "https://fiyatlari.pro/oauth/authorize",
      "tokenEndpoint": "https://fiyatlari.pro/oauth/token",
      "grantTypesSupported": [
        "authorization_code",
        "client_credentials"
      ],
      "scopesSupported": [
        "mcp:read",
        "mcp:tools"
      ]
    },
    "mcpServerCard": {
      "exists": false,
      "url": "https://fiyatlari.pro/.well-known/mcp.json"
    },
    "a2aAgentCard": {
      "exists": false,
      "url": "https://fiyatlari.pro/.well-known/agent.json"
    },
    "count": 1
  },
  "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": "# Web Sitesi Fiyatı\n\n> Türkiye'nin en kapsamlı fiyat karşılaştırma platformu. Ajanslar, freelancerlar ve hizmetler arasında en uygun fiyatı bulun.\n\n## Main\n- [Fiyatları Pro — Fiyat Karşılaştırma Platformu](https://fiyatlari.pro): Türkiye'nin en kapsamlı fiyat karşılaştırma platformu. Ajanslar, freelancerlar ve hizmetler arasında en uygun fiyatı bu…\n- [Hakkımızda](https://fiyatlari.pro/about)\n- [F             Fiyatları Pro](https://fiyatlari.pro/)\n- [2](https://fiyatlari.pro/?page=2)\n- [KVKK Aydınlatma Metni](https://fiyatlari.pro/kvkk)\n- [Yapay Zeka Chat](https://fiyatlari.pro/ai-chat)\n- [Profil](https://fiyatlari.pro/profile)\n\n## Legal\n- [Gizlilik Politikası](https://fiyatlari.pro/privacy-policy)\n- [Kullanım Koşulları](https://fiyatlari.pro/terms)\n- [İade ve İptal Politikası](https://fiyatlari.pro/refund-policy)\n- [Çerez Politikası](https://fiyatlari.pro/cookie-policy)\n\n## Support\n- [İletişim](https://fiyatlari.pro/contact)\n\n",
      "filename": "/llms.txt"
    },
    {
      "id": "add_open_graph",
      "title": "Add missing Open Graph tags",
      "description": "Open Graph tags control how your page looks when shared on social media and how AI platforms preview your URL in answers.",
      "language": "html",
      "code": "<meta property=\"og:image\" content=\"https://yoursite.com/og-image.jpg\">\n<meta property=\"og:url\" content=\"https://fiyatlari.pro\">\n<meta property=\"og:type\" content=\"website\">",
      "filename": "<head>",
      "stacks": [
        {
          "id": "html",
          "label": "HTML <head>",
          "language": "html",
          "filename": "<head>",
          "code": "<meta property=\"og:image\" content=\"https://yoursite.com/og-image.jpg\">\n<meta property=\"og:url\" content=\"https://fiyatlari.pro\">\n<meta property=\"og:type\" content=\"website\">"
        },
        {
          "id": "wordpress",
          "label": "WordPress",
          "language": "php",
          "filename": "functions.php",
          "code": "<?php\n// Quick Open Graph tags without a plugin (skip if Yoast / Rank Math is active)\nadd_action('wp_head', function () {\n    if (!is_singular()) return;\n    $post = get_queried_object();\n    $title = get_the_title($post);\n    $desc  = get_the_excerpt($post) ?: wp_trim_words(strip_tags($post->post_content), 30);\n    $image = get_the_post_thumbnail_url($post, 'large') ?: 'https://yoursite.com/og-image.jpg';\n    $url   = get_permalink($post);\n    printf('<meta property=\"og:title\" content=\"%s\">' . \"\\n\", esc_attr($title));\n    printf('<meta property=\"og:description\" content=\"%s\">' . \"\\n\", esc_attr($desc));\n    printf('<meta property=\"og:image\" content=\"%s\">' . \"\\n\", esc_url($image));\n    printf('<meta property=\"og:url\" content=\"%s\">' . \"\\n\", esc_url($url));\n    echo '<meta property=\"og:type\" content=\"article\">' . \"\\n\";\n}, 5);"
        },
        {
          "id": "nextjs",
          "label": "Next.js",
          "language": "typescript",
          "filename": "app/page.tsx",
          "code": "// Next.js App Router — Metadata API\nimport type { Metadata } from 'next';\n\nexport const metadata: Metadata = {\n  title: \"Fiyatları Pro — Fiyat Karşılaştırma Platformu\",\n  description: \"Türkiye'nin en kapsamlı fiyat karşılaştırma platformu. Ajanslar, freelancerlar ve hizmetler arasında en uygun fiyatı bulun.\",\n  openGraph: {\n    title: \"Fiyatları Pro — Fiyat Karşılaştırma Platformu\",\n    description: \"Türkiye'nin en kapsamlı fiyat karşılaştırma platformu. Ajanslar, freelancerlar ve hizmetler arasında en uygun fiyatı bulun.\",\n    url: \"https://fiyatlari.pro\",\n    images: [\"https://yoursite.com/og-image.jpg\"],\n    type: 'website',\n  },\n};"
        }
      ]
    },
    {
      "id": "add_canonical_url",
      "title": "Add canonical URL",
      "description": "The canonical URL tells AI agents which version of the page is the \"official\" one, avoiding duplicate content issues.",
      "language": "html",
      "code": "<link rel=\"canonical\" href=\"https://fiyatlari.pro\">",
      "filename": "<head>"
    },
    {
      "id": "add_sitemap",
      "title": "Create /sitemap.xml",
      "description": "A sitemap helps AI agents discover all your pages. Most CMS platforms generate one automatically.",
      "language": "xml",
      "code": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<urlset xmlns=\"http://www.sitemaps.org/schemas/sitemap/0.9\">\n  <url>\n    <loc>https://fiyatlari.pro</loc>\n    <lastmod>2026-04-20</lastmod>\n  </url>\n</urlset>",
      "filename": "/sitemap.xml"
    },
    {
      "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

Встройте ваш бейдж

Добавьте этот бейдж на ваш сайт. Он обновляется автоматически при изменении вашей оценки ИИ-готовности.

AgentReady.md score for fiyatlari.pro
Script Рекомендуется
<script src="https://agentready.md/badge.js" data-id="86d5ecc2-5fa8-4c68-b7ca-0a1fe0cbe9e8" data-domain="fiyatlari.pro"></script>
Markdown
[![AgentReady.md score for fiyatlari.pro](https://agentready.md/badge/fiyatlari.pro.svg)](https://agentready.md/ru/r/86d5ecc2-5fa8-4c68-b7ca-0a1fe0cbe9e8)

Скоро: Полный анализ домена

Сканируйте весь домен, генерируйте llms.txt и отслеживайте оценку ИИ-готовности со временем. Присоединяйтесь к списку ожидания.

Вы в списке! Мы уведомим вас о запуске.