Verifiziertes AgentReady.md-Zertifikat
Ausgestellt am sig: 1dc0a891b32e9499 Verifizieren →

Analysierte URL

https://fiyatlari.pro

Weitere URL analysieren

KI-Ready Score

71 / C

Befriedigend

von 100

Token-Einsparung

HTML-Tokens 12.366
Markdown-Tokens 1383
Einsparung 89%

Score-Aufschlüsselung

Semantisches HTML 84/100
Inhaltseffizienz 94/100
KI-Auffindbarkeit 25/100
Strukturierte Daten 62/100
Zugänglichkeit 100/100

Emerging Protocols

1 von 3 erkannt

Well-known-Endpunkte, nach denen KI-Agenten suchen. Erkannt bedeutet, dass ein Agent Ihren Dienst automatisch finden und verbinden kann.

  • 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

Ihre Website hat keine llms.txt-Datei. Dies ist der aufkommende Standard, um KI-Agenten beim Verständnis Ihrer Website-Struktur zu helfen.

So implementieren Sie es

Erstellen Sie eine /llms.txt-Datei gemäß der llmstxt.org-Spezifikation. Fügen Sie eine Beschreibung Ihrer Website und Links zu Ihren wichtigsten Seiten hinzu.

Ihre Website unterstützt kein Markdown for Agents. Dieser Cloudflare-Standard ermöglicht KI-Agenten, Inhalte im Markdown-Format anzufordern und reduziert den Token-Verbrauch um ~80%.

So implementieren Sie es

Implementieren Sie eines oder mehrere: (1) Auf Accept: text/markdown mit Markdown-Inhalt antworten. (2) .md-URLs bereitstellen (z.B. /seite.md). (3) <link rel="alternate" type="text/markdown">-Tags hinzufügen. (4) Link-HTTP-Header für Markdown-Erkennung hinzufügen.

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

Keine Sitemap gefunden. Eine Sitemap hilft KI-Agenten, alle Seiten Ihrer Website zu entdecken.

So implementieren Sie es

Erstellen Sie eine /sitemap.xml, die alle Ihre öffentlichen Seiten auflistet. Die meisten CMS-Plattformen können diese automatisch generieren.

Keine Content-Signal-Direktiven gefunden. Diese teilen KI-Agenten mit, wie sie Ihre Inhalte verwenden dürfen (Suchindexierung, KI-Eingabe, Trainingsdaten). Der empfohlene Ort ist robots.txt.

So implementieren Sie es

Fügen Sie Content-Signal zu Ihrer robots.txt hinzu: User-agent: *\nContent-Signal: search=yes, ai-input=yes, ai-train=no. Sie können es auch als HTTP-Header bei Markdown-Antworten hinzufügen.

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

Ihre Seite stützt sich stark auf <div>-Elemente. Semantische Elemente wie <section>, <nav>, <header>, <footer> und <aside> bieten eine sinnvolle Struktur für KI-Agenten.

So implementieren Sie es

Ersetzen Sie generische <div>-Container durch passende semantische Elemente. Verwenden Sie <section> für thematische Gruppen, <nav> für Navigation, <header>/<footer> für Seiten-/Abschnittskopf und -fußzeilen.

Keine kanonische URL gefunden. Diese hilft KI-Agenten, die bevorzugte Version einer Seite zu identifizieren und doppelte Inhalte zu vermeiden.

So implementieren Sie es

Fügen Sie ein <link rel="canonical" href="...">-Tag hinzu, das auf die kanonische URL der Seite verweist.

Fehlende oder unvollständige Open-Graph-Tags. OG-Tags helfen KI-Agenten (und sozialen Plattformen), Titel, Beschreibung und Bild Ihrer Seite zu verstehen.

So implementieren Sie es

Fügen Sie og:title, og:description und og:image Meta-Tags zum <head> Ihrer Seite hinzu.

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-Tokens: 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)

Laden Sie diese Datei als /index.md auf Ihren Server hoch, damit KI-Agenten auf eine saubere Version Ihrer Seite zugreifen können. Sie können auch die Accept: text/markdown-Inhaltsverhandlung konfigurieren, um sie automatisch auszuliefern.

Generierte llms.txt für diese einzelne Seite

llms.txt herunterladen
# 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)

Vollständige llms.txt erfordert eine domainweite Analyse (kommt bald)

Laden Sie diese Datei als https://fiyatlari.pro/llms.txt im Stammverzeichnis Ihrer Domain hoch. KI-Agenten wie ChatGPT, Claude und Perplexity prüfen diese Datei, um Ihre Website-Struktur zu verstehen.

Semantisches HTML

Verwendet article- oder main-Element (100/100)

Has <main>

Korrekte Überschriftenhierarchie (85/100)

1 heading level skip(s)

Verwendet semantische HTML-Elemente (38/100)

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

Aussagekräftige Bild-Alt-Texte (100/100)

No images found

Geringe div-Verschachtelungstiefe (100/100)

Avg div depth: 1.8, max: 3

Inhaltseffizienz

Gutes Token-Reduktionsverhältnis (100/100)

89% token reduction (HTML→Markdown)

Gutes Inhalt-zu-Rausch-Verhältnis (80/100)

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

Minimale Inline-Styles (100/100)

1/360 elements with inline styles (0.3%)

Angemessenes Seitengewicht (100/100)

HTML size: 47KB

KI-Auffindbarkeit

Hat llms.txt-Datei (0/100)

No llms.txt found

Hat robots.txt-Datei (100/100)

robots.txt exists

robots.txt erlaubt KI-Bots (100/100)

All major AI bots allowed

Hat sitemap.xml (0/100)

No sitemap found

Markdown for Agents Unterstützung (0/100)
&#10007; Accept: text/markdown &#10007; .md URL &#10007; <link> tag &#10007; Link header
Hat Content-Signal (robots.txt oder HTTP-Header) (0/100)
&#10003; robots.txt &#10003; HTTP header &#10007; Policy

Strukturierte Daten

Hat Schema.org / JSON-LD (50/100)

JSON-LD found but basic types: WebSite

Hat Open-Graph-Tags (67/100)

2/3 OG tags present

Hat Meta-Beschreibung (100/100)

Meta description: 123 chars

Hat kanonische URL (0/100)

No canonical URL

Hat lang-Attribut (100/100)

lang="tr"

Zugänglichkeit

Inhalt ohne JavaScript verfügbar (100/100)

Content available without JavaScript

Angemessene Seitengröße (100/100)

Page size: 47KB

Inhalt erscheint früh im 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\">"
        }
      ]
    }
  ]
}

Nutzen Sie unsere API, um dies programmatisch abzurufen (kommt bald)

Dieses JSON ist für den internen Gebrauch bestimmt — im Gegensatz zu den Markdown- und llms.txt-Dateien soll es nicht auf Ihre Website hochgeladen werden. Speichern Sie es als Ausgangswert, um Ihren Score im Zeitverlauf zu verfolgen, teilen Sie es mit Ihrem Entwicklerteam oder integrieren Sie es in Ihre CI/CD-Pipeline.

Teilen Sie Ihre Ergebnisse

Twitter LinkedIn

Badge einbetten

Fügen Sie dieses Badge zu Ihrer Website hinzu. Es aktualisiert sich automatisch, wenn sich Ihr KI-Bereitschafts-Score ändert.

AgentReady.md score for fiyatlari.pro
Script Empfohlen
<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/de/r/86d5ecc2-5fa8-4c68-b7ca-0a1fe0cbe9e8)

Demnächst: Vollständige Domain-Analyse

Crawlen Sie Ihre gesamte Domain, generieren Sie llms.txt und überwachen Sie Ihren KI-Bereitschaftswert im Zeitverlauf. Tragen Sie sich in die Warteliste ein.

Sie stehen auf der Liste! Wir benachrichtigen Sie, sobald es verfügbar ist.