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

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

https://www.questr.io/

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

Оценка AI-Ready

55 / D

Плохо

из 100

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

HTML-токены 107.632
Markdown-токены 609
Экономия 99%

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

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

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

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

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

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

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

Как внедрить

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

На вашей странице низкое соотношение фактического контента к общему HTML. Большая часть веса страницы приходится на разметку, скрипты или стили, а не на контент.

Как внедрить

Перенесите CSS во внешние таблицы стилей, удалите inline-стили, минимизируйте JavaScript и убедитесь, что HTML сфокусирован на структуре контента.

Ваш сайт не поддерживает 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# "}] }'>

На вашем сайте нет файла robots.txt. Этот файл контролирует, как боты (включая ИИ-агентов) получают доступ к вашему сайту.

Как внедрить

Создайте файл /robots.txt, разрешающий доступ к вашим контентным страницам. Включите директиву Sitemap, указывающую на ваш sitemap.xml.

Директивы 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> для верхних и нижних колонтитулов страниц и разделов.

Некоторые изображения не имеют описательного альтернативного текста. Хорошие alt-тексты помогают ИИ-агентам понять содержание и контекст изображений.

Как внедрить

Добавьте описательные атрибуты alt ко всем изображениям. Описывайте то, что показано на изображении, а не просто «изображение» или «фото». Для декоративных изображений используйте alt="" (пустой).

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

Как внедрить

Перестройте HTML так, чтобы контент <main> или <article> появлялся перед боковыми панелями и дополнительным контентом.

Структура заголовков вашей страницы имеет проблемы (пропущенные уровни или несколько тегов h1). Чёткая иерархия помогает ИИ-агентам понять организацию контента.

Как внедрить

Убедитесь, что на странице ровно один <h1>, а заголовки следуют последовательному порядку: h1 > h2 > h3. Не пропускайте уровни (например, h1 сразу к h3).

Отсутствуют или неполные теги 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: \"questr: Expert:innen für Kryptowährungen\",\n description: \"Expertise für Kryptowährungen und Krypto-Steuer-Tools. Krypto-Buchhaltung, Krypto-Steuerberichte, Krypto-Forensik und Mittelherkunftsnachweise\",\n openGraph: {\n title: \"questr: Expert:innen für Kryptowährungen\",\n description: \"Expertise für Kryptowährungen und Krypto-Steuer-Tools. Krypto-Buchhaltung, Krypto-Steuerberichte, Krypto-Forensik und Mittelherkunftsnachweise\",\n url: \"https://www.questr.io/\",\n images: [\"https://yoursite.com/og-image.jpg\"],\n type: 'website',\n },\n};"}] }'>
Markdown-токены: 609
Full-Service

## Für Privatpersonen### **Experten-Beratung**

-   Online-Beratung zu Problemen mit Krypto-Steuer-Tools (Blockpit, CoinTracking)
-   Online-Beratung zu Krypto-Mittelherkunftsnachweisen

### **Krypto-Datenaufbereitung**

-   Korrekte Aufbereitung der Krypto-Transaktionsdaten in einem geeigneten Krypto-Steuer-Tool
-   Erstellung von Steuerberichten in Kooperation mit einer spezialisierten Steuerberatungskanzlei

### **Krypto-Forensik und Krypto-Compliance**

-   Mittelherkunftsnachweis für Krypto-Assets zur Vorlage bei Finanzdienstleistern
-   Rekonstruktion verlorener Blockchain-Transaktionshistorien

Full-Service

## Für Unternehmen### **Krypto-Accounting**

-   Korrekte Aufbereitung der Krypto-Transaktionsdaten in einem geeigneten Krypto-Steuer-Tool
-   Erstellung von Buchhaltung und Bilanz in Kooperation mit einer spezialisierten Steuerberatungskanzlei

### **Krypto-Forensik und Krypto-Compliance**

-   Mittelherkunftsnachweis für Krypto-Assets des Unternehmens
-   Rekonstruktion verlorener Blockchain-Transaktionshistorien
-   Forensische Prüfung von Krypto-Adressen auf Geldwäsche-Risiken

![Natalie Enzinger - cryptotax](https://www.questr.io/wp-content/uploads/2025/01/Natalie-Enzinger.jpg)

CRYPTOTAX

## Kooperation mit
Enzinger Steuerberatung

Wir arbeiten für unsere Kund:innen in Österreich in enger Abstimmung mit Enzinger Steuerberatung, einer Kanzlei, die sich seit über 10 Jahren auf die Besteuerung von Kryptowährungen in Österreich spezialisiert.

**So ermöglichen wir auf Wunsch eine vollumfängliche Betreuung unserer Privat- und Unternehmenskund:innen!**

**Auf unserer gemeinsamen Plattform cryptotax findest du weitere Infos!**

E-BOOK und NEWSLETTER

## Cryptotax-Newsletter und gratis Downloads

Bleibe top informiert mit unserem beliebten cryptotax Newsletter und hol‘ dir jetzt deine Checkliste Krypto-Mittelherkunftsnachweis und dein E-Book: Krypto Steuer Österreich!

Beides erstellen wir in Kooperation mit Enzinger Steuerberatung zu den Themen Steuern auf Krypto-Assets, Krypto-Compliance und Krypto-Dokumentation!
questr: Deine Krypto-Daten Expert:innen

[![Logo](https://www.questr.io/wp-content/uploads/2022/10/questr_logo.svg)](https://www.questr.io/)

-   [Krypto-Dienstleistungen](https://www.questr.io/krypto-dienstleistungen/)
-   [Compliance & Forensik](https://www.questr.io/krypto-dienstleistungen-fuer-steuerberatung-und-banken/)
-   [FAQ](https://www.questr.io/faq-kryptowaehrungsdaten/)
-   [Krypto-ABC](https://www.questr.io/krypto-abc/)
-   [Team](https://www.questr.io/krypto-team/)
-   [Blog](https://www.questr.io/krypto-blog/)
-   [DE](https://www.questr.io/)
-   [EN](https://www.questr.io/en/ "Zu EN(EN) wechseln")

[![](https://www.questr.io/wp-content/themes/questr/assets/img/account.svg)](https://www.questr.io/konto)

Warenkorb

[![Logo](https://www.questr.io/wp-content/uploads/2022/10/questr_logo.svg)](https://www.questr.io/)

[![](https://www.questr.io/wp-content/themes/questr/assets/img/account.svg)](https://www.questr.io/konto)

![](data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2045%2044'%3E%3C/svg%3E)

-   [Krypto-Dienstleistungen](https://www.questr.io/krypto-dienstleistungen/)
-   [Compliance & Forensik](https://www.questr.io/krypto-dienstleistungen-fuer-steuerberatung-und-banken/)
-   [FAQ](https://www.questr.io/faq-kryptowaehrungsdaten/)
-   [Krypto-ABC](https://www.questr.io/krypto-abc/)
-   [Team](https://www.questr.io/krypto-team/)
-   [Blog](https://www.questr.io/krypto-blog/)
-   [DE](https://www.questr.io/)
-   [EN](https://www.questr.io/en/ "Zu EN(EN) wechseln")

[![](data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2042%2042'%3E%3C/svg%3E)](https://www.facebook.com/people/questrio/100084228365367/)[![](data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2042%2042'%3E%3C/svg%3E)](https://www.instagram.com/questr_io/)[![](data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2042%2042'%3E%3C/svg%3E)](https://www.linkedin.com/company/questrio/)[![](data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2042%2042'%3E%3C/svg%3E)](https://twitter.com/questr_io)

### Warenkorb

Es befinden sich keine Produkte im Warenkorb.

![](data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20384%20512'%3E%3C/svg%3E)

#### Anfrage# Datenaufbereitung / Datenkontrolle

Vorname\*  Nachname\*  Telefonnummer\*  Straße\*  Ort\*  PLZ\*  E-Mail\*  Nachricht

 Ich akzeptiere die [Datenschutzrichtlinie](https://www.questr.io/datenschutz).

![](data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20384%20512'%3E%3C/svg%3E)

#### Anfrage# Mittelherkunftsnachweis

Vorname\*  Nachname\*  Telefonnummer\*  Straße\*  Ort\*  PLZ\*  E-Mail\*

 Ich akzeptiere die [Datenschutzrichtlinie](https://www.questr.io/datenschutz).

![](data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20384%20512'%3E%3C/svg%3E)

#### Anfrage# Für Unternehmen

Firma\*  Vorname\*  Nachname\*  Telefonnummer\*  E-Mail\*  Straße\*  Ort\*  PLZ\*  Ihre Nachricht

 Ich akzeptiere die [Datenschutzrichtlinie](https://www.questr.io/datenschutz).

You have chosen to be an entrepreneur. We expressly point out that in this case we only offer our services to entrepreneurs. If you are a consumer, we ask you to change your selection

Ja

![questr Kryptowährung Steuer Bank](https://www.questr.io/wp-content/uploads/2022/11/lab_new.svg)

KRYPTO- und BLOCKCHAIN-EXPERTISE

# **questr**
Krypto-Accounting & Krypto-Forensik

Für Unternehmen und Privatpersonen

-   Buchhaltung und Bilanzierung für Krypto-Assets
-   Krypto-Datenaufbereitung für die Steuererklärung
-   Mittelherkunftsnachweis für Kryptowährungen
-   Forensische Blockchain-Analyse
-   Krypto-Steuer-Tool Beratung

[Compliance & Forensik](https://www.questr.io/krypto-dienstleistungen-fuer-steuerberatung-und-banken/)

[Angebot für Unternehmen](https://www.questr.io/#h-fur-unternehmen)

[Angebot für Privatpersonen](https://www.questr.io/#h-fur-privatpersonen)

[](https://www.questr.io/#scrContent)

[](https://www.questr.io/#scrollContent)

Full-Service

## Für Privatpersonen### **Experten-Beratung**

-   Online-Beratung zu Problemen mit Krypto-Steuer-Tools (Blockpit, CoinTracking)
-   Online-Beratung zu Krypto-Mittelherkunftsnachweisen

### **Krypto-Datenaufbereitung**

-   Korrekte Aufbereitung der Krypto-Transaktionsdaten in einem geeigneten Krypto-Steuer-Tool
-   Erstellung von Steuerberichten in Kooperation mit einer spezialisierten Steuerberatungskanzlei

### **Krypto-Forensik und Krypto-Compliance**

-   Mittelherkunftsnachweis für Krypto-Assets zur Vorlage bei Finanzdienstleistern
-   Rekonstruktion verlorener Blockchain-Transaktionshistorien

[Zum Angebot](https://www.questr.io/krypto-dienstleistungen/)

![](data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20191%20224'%3E%3C/svg%3E)

![](data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20113%2023'%3E%3C/svg%3E)

Full-Service

## Für Unternehmen### **Krypto-Accounting**

-   Korrekte Aufbereitung der Krypto-Transaktionsdaten in einem geeigneten Krypto-Steuer-Tool
-   Erstellung von Buchhaltung und Bilanz in Kooperation mit einer spezialisierten Steuerberatungskanzlei

### **Krypto-Forensik und Krypto-Compliance**

-   Mittelherkunftsnachweis für Krypto-Assets des Unternehmens
-   Rekonstruktion verlorener Blockchain-Transaktionshistorien
-   Forensische Prüfung von Krypto-Adressen auf Geldwäsche-Risiken

[ANFRAGE STELLEN](https://www.questr.io/#unternehmen)

![](data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20537%20553'%3E%3C/svg%3E)

![](data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20113%2023'%3E%3C/svg%3E)

COMPLIANCE

## Crypto Exposure Report

Forensische Prüfung von Kryptowährungs-Adressen für Compliance-Abteilungen bei Finanzdienstleistern.

Der Crypto Exposure Report liefert Compliance-Teams die notwendigen Daten für eine präzise Bewertung des Risikos für Geldwäsche

[COMPLIANCE UND FORENSIK](https://www.questr.io/krypto-dienstleistungen-fuer-steuerberatung-und-banken/)

![Crypto Exposure Report](data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%201018%20720'%3E%3C/svg%3E)

![Natalie Enzinger - cryptotax](data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20767%201024'%3E%3C/svg%3E)

CRYPTOTAX

## Kooperation mit
Enzinger Steuerberatung

Wir arbeiten für unsere Kund:innen in Österreich in enger Abstimmung mit Enzinger Steuerberatung, einer Kanzlei, die sich seit über 10 Jahren auf die Besteuerung von Kryptowährungen in Österreich spezialisiert.

**So ermöglichen wir auf Wunsch eine vollumfängliche Betreuung unserer Privat- und Unternehmenskund:innen!**

**Auf unserer gemeinsamen Plattform cryptotax findest du weitere Infos!**

[CRYPTO-TAX.AT](https://www.crypto-tax.at/) [KRYPTO-STEUERBERATUNG](https://www.crypto-tax.at/produkt/online-steuerberatung/)

![](data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20626%20598'%3E%3C/svg%3E)

UNTERSTÜTZUNG

## Zusammenarbeit mit Steuerberater:innen

Falls Kund:innen bereits bei einer anderen Steuerberatungskanzlei vertreten sind, arbeiten wir der jeweiligen Kanzlei zu und unterstützen nach Bedarf mit unserer Krypto-Expertise!

[Unser Angebot für Unternehmen](https://www.questr.io/#h-fur-unternehmen)

[Unser Angebot für Privatpersonen](https://www.questr.io/#h-fur-privatpersonen)

E-BOOK und NEWSLETTER

## Cryptotax-Newsletter und gratis Downloads

Bleibe top informiert mit unserem beliebten cryptotax Newsletter und hol‘ dir jetzt deine Checkliste Krypto-Mittelherkunftsnachweis und dein E-Book: Krypto Steuer Österreich!

Beides erstellen wir in Kooperation mit Enzinger Steuerberatung zu den Themen Steuern auf Krypto-Assets, Krypto-Compliance und Krypto-Dokumentation!

[Zum Krypto Steuer Guide](https://www.crypto-tax.at/krypto-steuer-oesterreich-guide/) [Checkliste Mittelherkunftsnachweis](https://www.crypto-tax.at/checkliste-krypto-mittelherkunftsnachweis/) [Newsletter-Anmeldung](https://www.crypto-tax.at/krypto-steuer-newsletter/)

![Krypto Steuer Guide](data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%201024%20571'%3E%3C/svg%3E)

![Checkliste Krypto-Mittelherkunftsnachweis](data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20374%20377'%3E%3C/svg%3E)

Anton D.

![Image is not available](https://www.questr.io/wp-content/uploads/2023/07/questr_stern.svg)

**Super betreut von Anfang bis Ende!** Ich fühle mich nun wohler, weil meine Transaktionen so gut dokumentiert sind. Weder vom Finanzamt noch von der Bank kamen Rückfragen. Ein Kollege, der ein anderes Unternehmen beauftragt hat, hat bis heute Probleme. **Habe questr schon mehrfach weiterempfohlen!**

![Image is not available](https://www.questr.io/wp-content/uploads/2023/07/testimonial_avatar_00.png)

Anton D.

Tristan G.

![Image is not available](https://www.questr.io/wp-content/uploads/2023/07/questr_stern.svg)

**Questr kümmert sich um Kunden wie mich mehr als man sich als Kunde wünschen kann. Ein herzliches Danke dafür!**

![Image is not available](https://www.questr.io/wp-content/uploads/2023/07/testimonial_avatar_00.png)

Thomas G.

Matthias K.

![Image is not available](https://www.questr.io/wp-content/uploads/2023/07/questr_stern.svg)

Dank questr kann ich mich auf das Traden konzentrieren – **ich bin echt froh, dass sich jemand so gut mit verschiedenen Exchanges und Wallets auskennt** und mir geholfen hat das für mich passende Steuertool zu wählen. Es hat mir jede Menge Geld gespart und ich habe auch sehr hilfreiche Infos zum Konkursverfahren meiner Krypto-Börse bekommen. Ich dachte schon, ich schaff‘ das alles nicht.

![Image is not available](https://www.questr.io/wp-content/uploads/2023/07/testimonial_avatar_00.png)

Matthias K.

Ethereum

![](https://www.questr.io/wp-content/uploads/2023/07/carousel019.svg)

Arbitrum

![](https://www.questr.io/wp-content/uploads/2023/07/carousel020.svg)

Cardano

![](https://www.questr.io/wp-content/uploads/2023/07/carousel023.svg)

Avalanche

![](https://www.questr.io/wp-content/uploads/2023/07/carousel025.svg)

Cosmos

![](https://www.questr.io/wp-content/uploads/2023/07/carousel028.svg)

Polygon

![](https://www.questr.io/wp-content/uploads/2023/07/carousel029.svg)

Solana

![](https://www.questr.io/wp-content/uploads/2023/07/carousel030.svg)

Uniswap

![](https://www.questr.io/wp-content/uploads/2023/07/carousel038.svg)

AAVE

![](https://www.questr.io/wp-content/uploads/2023/07/carousel039.svg)

Bitcoin

![](https://www.questr.io/wp-content/uploads/2023/07/carousel043.svg)

Polkadot

![](https://www.questr.io/wp-content/uploads/2023/07/carousel027.svg)

LIDO

![](https://www.questr.io/wp-content/uploads/2023/07/carousel044.svg)

![Krypto ABC](data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20183%20193'%3E%3C/svg%3E)

### KRYPTO ABC

Begriffe aus der Krypto-Welt einfach erklärt

[](https://www.questr.io/krypto-abc/)

![questr FAQ](data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20181%20183'%3E%3C/svg%3E)

### FAQ

Häufige Fragen zu questr und unseren Leistungen

[](https://www.questr.io/faq/)

![questr Blog Kryptowährung Steuer Mittelherkunftsnachweis](data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20150%20180'%3E%3C/svg%3E)

### QUESTR BLOG

Einzigartige Tipps und News rund um Kryptowährungen

[](https://www.questr.io/krypto-blog/)

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

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

Скачать llms.txt
# questr

> Expertise für Kryptowährungen und Krypto-Steuer-Tools. Krypto-Buchhaltung, Krypto-Steuerberichte, Krypto-Forensik und Mittelherkunftsnachweise

## Documentation
- [FAQ](https://www.questr.io/faq-kryptowaehrungsdaten/)

## Main
- [questr: Expert:innen für Kryptowährungen](https://www.questr.io/): Expertise für Kryptowährungen und Krypto-Steuer-Tools. Krypto-Buchhaltung, Krypto-Steuerberichte, Krypto-Forensik und M…
- [Krypto-Dienstleistungen](https://www.questr.io/krypto-dienstleistungen/)
- [Compliance & Forensik](https://www.questr.io/krypto-dienstleistungen-fuer-steuerberatung-und-banken/)
- [Krypto-ABC](https://www.questr.io/krypto-abc/)
- [Team](https://www.questr.io/krypto-team/)
- [Blog](https://www.questr.io/krypto-blog/)
- [EN](https://www.questr.io/en/)
- [Auftragsbedingungen AAB/BAB für Krypto-Assets](https://www.questr.io/aab/)
- [Impressum](https://www.questr.io/impressum/)

## Support
- [FAQ](https://www.questr.io/faq-kryptowaehrungsdaten/)

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

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

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

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

Has <main>

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

4 <h1> elements (should be 1), 2 heading level skip(s)

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

16 semantic elements, 460 divs (ratio: 3%)

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

14/48 images with meaningful alt text

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

Avg div depth: 9.1, max: 21

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

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

99% token reduction (HTML→Markdown)

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

Content ratio: 0.6% (1953 content chars / 337207 HTML bytes)

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

43/1133 elements with inline styles (3.8%)

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

HTML size: 329KB

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

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

No llms.txt found

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

No robots.txt found

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

No robots.txt — AI bots allowed by default

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

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 (100/100)

JSON-LD found: WebPage, ImageObject, BreadcrumbList, WebSite, Organization

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

2/3 OG tags present

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

Meta description: 142 chars

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

Canonical URL present

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

lang="de-DE"

Доступность

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

Content available without JavaScript

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

Page size: 329KB

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

Main content starts at 62% of HTML

{
  "url": "https://www.questr.io/",
  "timestamp": 1776677698488,
  "fetch": {
    "mode": "simple",
    "timeMs": 3133,
    "htmlSizeBytes": 337207,
    "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": "questr: Expert:innen für Kryptowährungen",
    "excerpt": "Expertise für Kryptowährungen und Krypto-Steuer-Tools. Krypto-Buchhaltung, Krypto-Steuerberichte, Krypto-Forensik und Mittelherkunftsnachweise",
    "byline": null,
    "siteName": "questr",
    "lang": "de-DE",
    "contentLength": 1953,
    "metadata": {
      "description": "Expertise für Kryptowährungen und Krypto-Steuer-Tools. Krypto-Buchhaltung, Krypto-Steuerberichte, Krypto-Forensik und Mittelherkunftsnachweise",
      "ogTitle": "questr: Expert:innen für Kryptowährungen",
      "ogDescription": "Expertise für Kryptowährungen und Krypto-Steuer-Tools. Krypto-Buchhaltung, Krypto-Steuerberichte, Krypto-Forensik und Mittelherkunftsnachweise",
      "ogImage": null,
      "ogType": "website",
      "canonical": "https://www.questr.io/",
      "lang": "de-DE",
      "schemas": [
        {
          "@type": "WebPage",
          "@id": "https://www.questr.io/",
          "url": "https://www.questr.io/",
          "name": "questr: Deine Krypto-Daten Expert:innen",
          "isPartOf": {
            "@id": "https://staging.questr.io/#website"
          },
          "about": {
            "@id": "https://staging.questr.io/#organization"
          },
          "primaryImageOfPage": {
            "@id": "https://www.questr.io/#primaryimage"
          },
          "image": {
            "@id": "https://www.questr.io/#primaryimage"
          },
          "thumbnailUrl": "https://www.questr.io/wp-content/uploads/2022/11/lab_new.svg",
          "datePublished": "2022-10-05T05:22:37+00:00",
          "dateModified": "2026-02-09T08:15:17+00:00",
          "description": "Expertise für Kryptowährungen und Krypto-Steuer-Tools. Krypto-Buchhaltung, Krypto-Steuerberichte, Krypto-Forensik und Mittelherkunftsnachweise",
          "breadcrumb": {
            "@id": "https://www.questr.io/#breadcrumb"
          },
          "inLanguage": "de",
          "potentialAction": [
            {
              "@type": "ReadAction",
              "target": [
                "https://www.questr.io/"
              ]
            }
          ]
        },
        {
          "@type": "ImageObject",
          "inLanguage": "de",
          "@id": "https://www.questr.io/#primaryimage",
          "url": "https://www.questr.io/wp-content/uploads/2022/11/lab_new.svg",
          "contentUrl": "https://www.questr.io/wp-content/uploads/2022/11/lab_new.svg",
          "width": 237,
          "height": 221
        },
        {
          "@type": "BreadcrumbList",
          "@id": "https://www.questr.io/#breadcrumb",
          "itemListElement": [
            {
              "@type": "ListItem",
              "position": 1,
              "name": "Home"
            }
          ]
        },
        {
          "@type": "WebSite",
          "@id": "https://staging.questr.io/#website",
          "url": "https://staging.questr.io/",
          "name": "questr",
          "description": "Wir checken Crypto!",
          "publisher": {
            "@id": "https://staging.questr.io/#organization"
          },
          "potentialAction": [
            {
              "@type": "SearchAction",
              "target": {
                "@type": "EntryPoint",
                "urlTemplate": "https://staging.questr.io/?s={search_term_string}"
              },
              "query-input": {
                "@type": "PropertyValueSpecification",
                "valueRequired": true,
                "valueName": "search_term_string"
              }
            }
          ],
          "inLanguage": "de"
        },
        {
          "@type": "Organization",
          "@id": "https://staging.questr.io/#organization",
          "name": "questr GmbH",
          "alternateName": "questr",
          "url": "https://staging.questr.io/",
          "logo": {
            "@type": "ImageObject",
            "inLanguage": "de",
            "@id": "https://staging.questr.io/#/schema/logo/image/",
            "url": "https://www.questr.io/wp-content/uploads/2022/10/questr_logo.svg",
            "contentUrl": "https://www.questr.io/wp-content/uploads/2022/10/questr_logo.svg",
            "width": 88,
            "height": 27,
            "caption": "questr GmbH"
          },
          "image": {
            "@id": "https://staging.questr.io/#/schema/logo/image/"
          },
          "sameAs": [
            "https://www.facebook.com/questr.io",
            "https://x.com/questr_io",
            "https://www.instagram.com/questr_io/",
            "https://www.linkedin.com/company/questrio/"
          ]
        }
      ],
      "robotsMeta": "index, follow, max-image-preview:large, max-snippet:-1, max-video-preview:-1",
      "author": null,
      "generator": "WordPress 6.9.1",
      "markdownAlternateHref": null
    }
  },
  "markdown": "Full-Service\n\n## Für Privatpersonen### **Experten-Beratung**\n\n-   Online-Beratung zu Problemen mit Krypto-Steuer-Tools (Blockpit, CoinTracking)\n-   Online-Beratung zu Krypto-Mittelherkunftsnachweisen\n\n### **Krypto-Datenaufbereitung**\n\n-   Korrekte Aufbereitung der Krypto-Transaktionsdaten in einem geeigneten Krypto-Steuer-Tool\n-   Erstellung von Steuerberichten in Kooperation mit einer spezialisierten Steuerberatungskanzlei\n\n### **Krypto-Forensik und Krypto-Compliance**\n\n-   Mittelherkunftsnachweis für Krypto-Assets zur Vorlage bei Finanzdienstleistern\n-   Rekonstruktion verlorener Blockchain-Transaktionshistorien\n\nFull-Service\n\n## Für Unternehmen### **Krypto-Accounting**\n\n-   Korrekte Aufbereitung der Krypto-Transaktionsdaten in einem geeigneten Krypto-Steuer-Tool\n-   Erstellung von Buchhaltung und Bilanz in Kooperation mit einer spezialisierten Steuerberatungskanzlei\n\n### **Krypto-Forensik und Krypto-Compliance**\n\n-   Mittelherkunftsnachweis für Krypto-Assets des Unternehmens\n-   Rekonstruktion verlorener Blockchain-Transaktionshistorien\n-   Forensische Prüfung von Krypto-Adressen auf Geldwäsche-Risiken\n\n![Natalie Enzinger - cryptotax](https://www.questr.io/wp-content/uploads/2025/01/Natalie-Enzinger.jpg)\n\nCRYPTOTAX\n\n## Kooperation mit\nEnzinger Steuerberatung\n\nWir arbeiten für unsere Kund:innen in Österreich in enger Abstimmung mit Enzinger Steuerberatung, einer Kanzlei, die sich seit über 10 Jahren auf die Besteuerung von Kryptowährungen in Österreich spezialisiert.\n\n**So ermöglichen wir auf Wunsch eine vollumfängliche Betreuung unserer Privat- und Unternehmenskund:innen!**\n\n**Auf unserer gemeinsamen Plattform cryptotax findest du weitere Infos!**\n\nE-BOOK und NEWSLETTER\n\n## Cryptotax-Newsletter und gratis Downloads\n\nBleibe top informiert mit unserem beliebten cryptotax Newsletter und hol‘ dir jetzt deine Checkliste Krypto-Mittelherkunftsnachweis und dein E-Book: Krypto Steuer Österreich!\n\nBeides erstellen wir in Kooperation mit Enzinger Steuerberatung zu den Themen Steuern auf Krypto-Assets, Krypto-Compliance und Krypto-Dokumentation!\n",
  "fullPageMarkdown": "questr: Deine Krypto-Daten Expert:innen\n\n[![Logo](https://www.questr.io/wp-content/uploads/2022/10/questr_logo.svg)](https://www.questr.io/)\n\n-   [Krypto-Dienstleistungen](https://www.questr.io/krypto-dienstleistungen/)\n-   [Compliance & Forensik](https://www.questr.io/krypto-dienstleistungen-fuer-steuerberatung-und-banken/)\n-   [FAQ](https://www.questr.io/faq-kryptowaehrungsdaten/)\n-   [Krypto-ABC](https://www.questr.io/krypto-abc/)\n-   [Team](https://www.questr.io/krypto-team/)\n-   [Blog](https://www.questr.io/krypto-blog/)\n-   [DE](https://www.questr.io/)\n-   [EN](https://www.questr.io/en/ \"Zu EN(EN) wechseln\")\n\n[![](https://www.questr.io/wp-content/themes/questr/assets/img/account.svg)](https://www.questr.io/konto)\n\nWarenkorb\n\n[![Logo](https://www.questr.io/wp-content/uploads/2022/10/questr_logo.svg)](https://www.questr.io/)\n\n[![](https://www.questr.io/wp-content/themes/questr/assets/img/account.svg)](https://www.questr.io/konto)\n\n![](data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2045%2044'%3E%3C/svg%3E)\n\n-   [Krypto-Dienstleistungen](https://www.questr.io/krypto-dienstleistungen/)\n-   [Compliance & Forensik](https://www.questr.io/krypto-dienstleistungen-fuer-steuerberatung-und-banken/)\n-   [FAQ](https://www.questr.io/faq-kryptowaehrungsdaten/)\n-   [Krypto-ABC](https://www.questr.io/krypto-abc/)\n-   [Team](https://www.questr.io/krypto-team/)\n-   [Blog](https://www.questr.io/krypto-blog/)\n-   [DE](https://www.questr.io/)\n-   [EN](https://www.questr.io/en/ \"Zu EN(EN) wechseln\")\n\n[![](data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2042%2042'%3E%3C/svg%3E)](https://www.facebook.com/people/questrio/100084228365367/)[![](data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2042%2042'%3E%3C/svg%3E)](https://www.instagram.com/questr_io/)[![](data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2042%2042'%3E%3C/svg%3E)](https://www.linkedin.com/company/questrio/)[![](data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2042%2042'%3E%3C/svg%3E)](https://twitter.com/questr_io)\n\n### Warenkorb\n\nEs befinden sich keine Produkte im Warenkorb.\n\n![](data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20384%20512'%3E%3C/svg%3E)\n\n#### Anfrage# Datenaufbereitung / Datenkontrolle\n\nVorname\\*  Nachname\\*  Telefonnummer\\*  Straße\\*  Ort\\*  PLZ\\*  E-Mail\\*  Nachricht\n\n Ich akzeptiere die [Datenschutzrichtlinie](https://www.questr.io/datenschutz).\n\n![](data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20384%20512'%3E%3C/svg%3E)\n\n#### Anfrage# Mittelherkunftsnachweis\n\nVorname\\*  Nachname\\*  Telefonnummer\\*  Straße\\*  Ort\\*  PLZ\\*  E-Mail\\*\n\n Ich akzeptiere die [Datenschutzrichtlinie](https://www.questr.io/datenschutz).\n\n![](data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20384%20512'%3E%3C/svg%3E)\n\n#### Anfrage# Für Unternehmen\n\nFirma\\*  Vorname\\*  Nachname\\*  Telefonnummer\\*  E-Mail\\*  Straße\\*  Ort\\*  PLZ\\*  Ihre Nachricht\n\n Ich akzeptiere die [Datenschutzrichtlinie](https://www.questr.io/datenschutz).\n\nYou have chosen to be an entrepreneur. We expressly point out that in this case we only offer our services to entrepreneurs. If you are a consumer, we ask you to change your selection\n\nJa\n\n![questr Kryptowährung Steuer Bank](https://www.questr.io/wp-content/uploads/2022/11/lab_new.svg)\n\nKRYPTO- und BLOCKCHAIN-EXPERTISE\n\n# **questr**\nKrypto-Accounting & Krypto-Forensik\n\nFür Unternehmen und Privatpersonen\n\n-   Buchhaltung und Bilanzierung für Krypto-Assets\n-   Krypto-Datenaufbereitung für die Steuererklärung\n-   Mittelherkunftsnachweis für Kryptowährungen\n-   Forensische Blockchain-Analyse\n-   Krypto-Steuer-Tool Beratung\n\n[Compliance & Forensik](https://www.questr.io/krypto-dienstleistungen-fuer-steuerberatung-und-banken/)\n\n[Angebot für Unternehmen](https://www.questr.io/#h-fur-unternehmen)\n\n[Angebot für Privatpersonen](https://www.questr.io/#h-fur-privatpersonen)\n\n[](https://www.questr.io/#scrContent)\n\n[](https://www.questr.io/#scrollContent)\n\nFull-Service\n\n## Für Privatpersonen### **Experten-Beratung**\n\n-   Online-Beratung zu Problemen mit Krypto-Steuer-Tools (Blockpit, CoinTracking)\n-   Online-Beratung zu Krypto-Mittelherkunftsnachweisen\n\n### **Krypto-Datenaufbereitung**\n\n-   Korrekte Aufbereitung der Krypto-Transaktionsdaten in einem geeigneten Krypto-Steuer-Tool\n-   Erstellung von Steuerberichten in Kooperation mit einer spezialisierten Steuerberatungskanzlei\n\n### **Krypto-Forensik und Krypto-Compliance**\n\n-   Mittelherkunftsnachweis für Krypto-Assets zur Vorlage bei Finanzdienstleistern\n-   Rekonstruktion verlorener Blockchain-Transaktionshistorien\n\n[Zum Angebot](https://www.questr.io/krypto-dienstleistungen/)\n\n![](data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20191%20224'%3E%3C/svg%3E)\n\n![](data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20113%2023'%3E%3C/svg%3E)\n\nFull-Service\n\n## Für Unternehmen### **Krypto-Accounting**\n\n-   Korrekte Aufbereitung der Krypto-Transaktionsdaten in einem geeigneten Krypto-Steuer-Tool\n-   Erstellung von Buchhaltung und Bilanz in Kooperation mit einer spezialisierten Steuerberatungskanzlei\n\n### **Krypto-Forensik und Krypto-Compliance**\n\n-   Mittelherkunftsnachweis für Krypto-Assets des Unternehmens\n-   Rekonstruktion verlorener Blockchain-Transaktionshistorien\n-   Forensische Prüfung von Krypto-Adressen auf Geldwäsche-Risiken\n\n[ANFRAGE STELLEN](https://www.questr.io/#unternehmen)\n\n![](data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20537%20553'%3E%3C/svg%3E)\n\n![](data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20113%2023'%3E%3C/svg%3E)\n\nCOMPLIANCE\n\n## Crypto Exposure Report\n\nForensische Prüfung von Kryptowährungs-Adressen für Compliance-Abteilungen bei Finanzdienstleistern.\n\nDer Crypto Exposure Report liefert Compliance-Teams die notwendigen Daten für eine präzise Bewertung des Risikos für Geldwäsche\n\n[COMPLIANCE UND FORENSIK](https://www.questr.io/krypto-dienstleistungen-fuer-steuerberatung-und-banken/)\n\n![Crypto Exposure Report](data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%201018%20720'%3E%3C/svg%3E)\n\n![Natalie Enzinger - cryptotax](data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20767%201024'%3E%3C/svg%3E)\n\nCRYPTOTAX\n\n## Kooperation mit\nEnzinger Steuerberatung\n\nWir arbeiten für unsere Kund:innen in Österreich in enger Abstimmung mit Enzinger Steuerberatung, einer Kanzlei, die sich seit über 10 Jahren auf die Besteuerung von Kryptowährungen in Österreich spezialisiert.\n\n**So ermöglichen wir auf Wunsch eine vollumfängliche Betreuung unserer Privat- und Unternehmenskund:innen!**\n\n**Auf unserer gemeinsamen Plattform cryptotax findest du weitere Infos!**\n\n[CRYPTO-TAX.AT](https://www.crypto-tax.at/) [KRYPTO-STEUERBERATUNG](https://www.crypto-tax.at/produkt/online-steuerberatung/)\n\n![](data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20626%20598'%3E%3C/svg%3E)\n\nUNTERSTÜTZUNG\n\n## Zusammenarbeit mit Steuerberater:innen\n\nFalls Kund:innen bereits bei einer anderen Steuerberatungskanzlei vertreten sind, arbeiten wir der jeweiligen Kanzlei zu und unterstützen nach Bedarf mit unserer Krypto-Expertise!\n\n[Unser Angebot für Unternehmen](https://www.questr.io/#h-fur-unternehmen)\n\n[Unser Angebot für Privatpersonen](https://www.questr.io/#h-fur-privatpersonen)\n\nE-BOOK und NEWSLETTER\n\n## Cryptotax-Newsletter und gratis Downloads\n\nBleibe top informiert mit unserem beliebten cryptotax Newsletter und hol‘ dir jetzt deine Checkliste Krypto-Mittelherkunftsnachweis und dein E-Book: Krypto Steuer Österreich!\n\nBeides erstellen wir in Kooperation mit Enzinger Steuerberatung zu den Themen Steuern auf Krypto-Assets, Krypto-Compliance und Krypto-Dokumentation!\n\n[Zum Krypto Steuer Guide](https://www.crypto-tax.at/krypto-steuer-oesterreich-guide/) [Checkliste Mittelherkunftsnachweis](https://www.crypto-tax.at/checkliste-krypto-mittelherkunftsnachweis/) [Newsletter-Anmeldung](https://www.crypto-tax.at/krypto-steuer-newsletter/)\n\n![Krypto Steuer Guide](data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%201024%20571'%3E%3C/svg%3E)\n\n![Checkliste Krypto-Mittelherkunftsnachweis](data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20374%20377'%3E%3C/svg%3E)\n\nAnton D.\n\n![Image is not available](https://www.questr.io/wp-content/uploads/2023/07/questr_stern.svg)\n\n**Super betreut von Anfang bis Ende!** Ich fühle mich nun wohler, weil meine Transaktionen so gut dokumentiert sind. Weder vom Finanzamt noch von der Bank kamen Rückfragen. Ein Kollege, der ein anderes Unternehmen beauftragt hat, hat bis heute Probleme. **Habe questr schon mehrfach weiterempfohlen!**\n\n![Image is not available](https://www.questr.io/wp-content/uploads/2023/07/testimonial_avatar_00.png)\n\nAnton D.\n\nTristan G.\n\n![Image is not available](https://www.questr.io/wp-content/uploads/2023/07/questr_stern.svg)\n\n**Questr kümmert sich um Kunden wie mich mehr als man sich als Kunde wünschen kann. Ein herzliches Danke dafür!**\n\n![Image is not available](https://www.questr.io/wp-content/uploads/2023/07/testimonial_avatar_00.png)\n\nThomas G.\n\nMatthias K.\n\n![Image is not available](https://www.questr.io/wp-content/uploads/2023/07/questr_stern.svg)\n\nDank questr kann ich mich auf das Traden konzentrieren – **ich bin echt froh, dass sich jemand so gut mit verschiedenen Exchanges und Wallets auskennt** und mir geholfen hat das für mich passende Steuertool zu wählen. Es hat mir jede Menge Geld gespart und ich habe auch sehr hilfreiche Infos zum Konkursverfahren meiner Krypto-Börse bekommen. Ich dachte schon, ich schaff‘ das alles nicht.\n\n![Image is not available](https://www.questr.io/wp-content/uploads/2023/07/testimonial_avatar_00.png)\n\nMatthias K.\n\nEthereum\n\n![](https://www.questr.io/wp-content/uploads/2023/07/carousel019.svg)\n\nArbitrum\n\n![](https://www.questr.io/wp-content/uploads/2023/07/carousel020.svg)\n\nCardano\n\n![](https://www.questr.io/wp-content/uploads/2023/07/carousel023.svg)\n\nAvalanche\n\n![](https://www.questr.io/wp-content/uploads/2023/07/carousel025.svg)\n\nCosmos\n\n![](https://www.questr.io/wp-content/uploads/2023/07/carousel028.svg)\n\nPolygon\n\n![](https://www.questr.io/wp-content/uploads/2023/07/carousel029.svg)\n\nSolana\n\n![](https://www.questr.io/wp-content/uploads/2023/07/carousel030.svg)\n\nUniswap\n\n![](https://www.questr.io/wp-content/uploads/2023/07/carousel038.svg)\n\nAAVE\n\n![](https://www.questr.io/wp-content/uploads/2023/07/carousel039.svg)\n\nBitcoin\n\n![](https://www.questr.io/wp-content/uploads/2023/07/carousel043.svg)\n\nPolkadot\n\n![](https://www.questr.io/wp-content/uploads/2023/07/carousel027.svg)\n\nLIDO\n\n![](https://www.questr.io/wp-content/uploads/2023/07/carousel044.svg)\n\n![Krypto ABC](data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20183%20193'%3E%3C/svg%3E)\n\n### KRYPTO ABC\n\nBegriffe aus der Krypto-Welt einfach erklärt\n\n[](https://www.questr.io/krypto-abc/)\n\n![questr FAQ](data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20181%20183'%3E%3C/svg%3E)\n\n### FAQ\n\nHäufige Fragen zu questr und unseren Leistungen\n\n[](https://www.questr.io/faq/)\n\n![questr Blog Kryptowährung Steuer Mittelherkunftsnachweis](data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20150%20180'%3E%3C/svg%3E)\n\n### QUESTR BLOG\n\nEinzigartige Tipps und News rund um Kryptowährungen\n\n[](https://www.questr.io/krypto-blog/)\n",
  "markdownStats": {
    "images": 1,
    "links": 0,
    "tables": 0,
    "codeBlocks": 0,
    "headings": 9
  },
  "tokens": {
    "htmlTokens": 107632,
    "markdownTokens": 609,
    "reduction": 107023,
    "reductionPercent": 99
  },
  "score": {
    "score": 55,
    "grade": "D",
    "dimensions": {
      "semanticHtml": {
        "score": 51,
        "weight": 20,
        "grade": "D",
        "checks": {
          "uses_article_or_main": {
            "score": 100,
            "weight": 20,
            "details": "Has <main>"
          },
          "proper_heading_hierarchy": {
            "score": 50,
            "weight": 25,
            "details": "4 <h1> elements (should be 1), 2 heading level skip(s)"
          },
          "semantic_elements": {
            "score": 11,
            "weight": 20,
            "details": "16 semantic elements, 460 divs (ratio: 3%)"
          },
          "meaningful_alt_texts": {
            "score": 29,
            "weight": 15,
            "details": "14/48 images with meaningful alt text"
          },
          "low_div_nesting": {
            "score": 59,
            "weight": 20,
            "details": "Avg div depth: 9.1, max: 21"
          }
        }
      },
      "contentEfficiency": {
        "score": 55,
        "weight": 25,
        "grade": "D",
        "checks": {
          "token_reduction_ratio": {
            "score": 100,
            "weight": 40,
            "details": "99% token reduction (HTML→Markdown)"
          },
          "content_to_noise_ratio": {
            "score": 0,
            "weight": 30,
            "details": "Content ratio: 0.6% (1953 content chars / 337207 HTML bytes)"
          },
          "minimal_inline_styles": {
            "score": 50,
            "weight": 15,
            "details": "43/1133 elements with inline styles (3.8%)"
          },
          "reasonable_page_weight": {
            "score": 50,
            "weight": 15,
            "details": "HTML size: 329KB"
          }
        }
      },
      "aiDiscoverability": {
        "score": 25,
        "weight": 25,
        "grade": "F",
        "checks": {
          "has_llms_txt": {
            "score": 0,
            "weight": 20,
            "details": "No llms.txt found"
          },
          "has_robots_txt": {
            "score": 0,
            "weight": 10,
            "details": "No robots.txt found"
          },
          "robots_allows_ai_bots": {
            "score": 100,
            "weight": 15,
            "details": "No robots.txt — AI bots allowed by default"
          },
          "has_sitemap": {
            "score": 100,
            "weight": 10,
            "details": "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": 92,
        "weight": 15,
        "grade": "A",
        "checks": {
          "has_schema_org": {
            "score": 100,
            "weight": 30,
            "details": "JSON-LD found: WebPage, ImageObject, BreadcrumbList, WebSite, Organization"
          },
          "has_open_graph": {
            "score": 67,
            "weight": 25,
            "details": "2/3 OG tags present"
          },
          "has_meta_description": {
            "score": 100,
            "weight": 20,
            "details": "Meta description: 142 chars"
          },
          "has_canonical_url": {
            "score": 100,
            "weight": 15,
            "details": "Canonical URL present"
          },
          "has_lang_attribute": {
            "score": 100,
            "weight": 10,
            "details": "lang=\"de-DE\""
          }
        }
      },
      "accessibility": {
        "score": 72,
        "weight": 15,
        "grade": "C",
        "checks": {
          "content_without_js": {
            "score": 100,
            "weight": 40,
            "details": "Content available without JavaScript"
          },
          "reasonable_page_size": {
            "score": 80,
            "weight": 30,
            "details": "Page size: 329KB"
          },
          "fast_content_position": {
            "score": 25,
            "weight": 30,
            "details": "Main content starts at 62% 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": "improve_content_ratio",
      "priority": "critical",
      "category": "contentEfficiency",
      "titleKey": "rec.improve_content_ratio.title",
      "descriptionKey": "rec.improve_content_ratio.description",
      "howToKey": "rec.improve_content_ratio.howto",
      "effort": "moderate",
      "estimatedImpact": 6,
      "checkScore": 0,
      "checkDetails": "Content ratio: 0.6% (1953 content chars / 337207 HTML bytes)"
    },
    {
      "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_robots_txt",
      "priority": "critical",
      "category": "aiDiscoverability",
      "titleKey": "rec.add_robots_txt.title",
      "descriptionKey": "rec.add_robots_txt.description",
      "howToKey": "rec.add_robots_txt.howto",
      "effort": "quick-win",
      "estimatedImpact": 5,
      "checkScore": 0,
      "checkDetails": "No robots.txt 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": 11,
      "checkDetails": "16 semantic elements, 460 divs (ratio: 3%)"
    },
    {
      "id": "improve_alt_texts",
      "priority": "high",
      "category": "semanticHtml",
      "titleKey": "rec.improve_alt_texts.title",
      "descriptionKey": "rec.improve_alt_texts.description",
      "howToKey": "rec.improve_alt_texts.howto",
      "effort": "moderate",
      "estimatedImpact": 4,
      "checkScore": 29,
      "checkDetails": "14/48 images with meaningful alt text"
    },
    {
      "id": "move_content_earlier",
      "priority": "high",
      "category": "accessibility",
      "titleKey": "rec.move_content_earlier.title",
      "descriptionKey": "rec.move_content_earlier.description",
      "howToKey": "rec.move_content_earlier.howto",
      "effort": "moderate",
      "estimatedImpact": 4,
      "checkScore": 25,
      "checkDetails": "Main content starts at 62% of HTML"
    },
    {
      "id": "fix_heading_hierarchy",
      "priority": "medium",
      "category": "semanticHtml",
      "titleKey": "rec.fix_heading_hierarchy.title",
      "descriptionKey": "rec.fix_heading_hierarchy.description",
      "howToKey": "rec.fix_heading_hierarchy.howto",
      "effort": "quick-win",
      "estimatedImpact": 6,
      "checkScore": 50,
      "checkDetails": "4 <h1> elements (should be 1), 2 heading level skip(s)"
    },
    {
      "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": "# questr\n\n> Expertise für Kryptowährungen und Krypto-Steuer-Tools. Krypto-Buchhaltung, Krypto-Steuerberichte, Krypto-Forensik und Mittelherkunftsnachweise\n\n## Documentation\n- [FAQ](https://www.questr.io/faq-kryptowaehrungsdaten/)\n\n## Main\n- [questr: Expert:innen für Kryptowährungen](https://www.questr.io/): Expertise für Kryptowährungen und Krypto-Steuer-Tools. Krypto-Buchhaltung, Krypto-Steuerberichte, Krypto-Forensik und M…\n- [Krypto-Dienstleistungen](https://www.questr.io/krypto-dienstleistungen/)\n- [Compliance & Forensik](https://www.questr.io/krypto-dienstleistungen-fuer-steuerberatung-und-banken/)\n- [Krypto-ABC](https://www.questr.io/krypto-abc/)\n- [Team](https://www.questr.io/krypto-team/)\n- [Blog](https://www.questr.io/krypto-blog/)\n- [EN](https://www.questr.io/en/)\n- [Auftragsbedingungen AAB/BAB für Krypto-Assets](https://www.questr.io/aab/)\n- [Impressum](https://www.questr.io/impressum/)\n\n## Support\n- [FAQ](https://www.questr.io/faq-kryptowaehrungsdaten/)\n\n",
  "llmsTxtExisting": null,
  "emergingProtocols": {
    "oauthDiscovery": {
      "exists": false,
      "url": "https://www.questr.io/.well-known/oauth-authorization-server"
    },
    "mcpServerCard": {
      "exists": false,
      "url": "https://www.questr.io/.well-known/mcp.json"
    },
    "a2aAgentCard": {
      "exists": false,
      "url": "https://www.questr.io/.well-known/agent.json"
    },
    "count": 0
  },
  "snippets": [
    {
      "id": "add_llms_txt",
      "title": "Create /llms.txt",
      "description": "Upload this file to your web root. It tells AI agents what your site is about and which pages matter.",
      "language": "markdown",
      "code": "# questr\n\n> Expertise für Kryptowährungen und Krypto-Steuer-Tools. Krypto-Buchhaltung, Krypto-Steuerberichte, Krypto-Forensik und Mittelherkunftsnachweise\n\n## Documentation\n- [FAQ](https://www.questr.io/faq-kryptowaehrungsdaten/)\n\n## Main\n- [questr: Expert:innen für Kryptowährungen](https://www.questr.io/): Expertise für Kryptowährungen und Krypto-Steuer-Tools. Krypto-Buchhaltung, Krypto-Steuerberichte, Krypto-Forensik und M…\n- [Krypto-Dienstleistungen](https://www.questr.io/krypto-dienstleistungen/)\n- [Compliance & Forensik](https://www.questr.io/krypto-dienstleistungen-fuer-steuerberatung-und-banken/)\n- [Krypto-ABC](https://www.questr.io/krypto-abc/)\n- [Team](https://www.questr.io/krypto-team/)\n- [Blog](https://www.questr.io/krypto-blog/)\n- [EN](https://www.questr.io/en/)\n- [Auftragsbedingungen AAB/BAB für Krypto-Assets](https://www.questr.io/aab/)\n- [Impressum](https://www.questr.io/impressum/)\n\n## Support\n- [FAQ](https://www.questr.io/faq-kryptowaehrungsdaten/)\n\n",
      "filename": "/llms.txt"
    },
    {
      "id": "fix_heading_hierarchy",
      "title": "Fix heading hierarchy",
      "description": "Your page has 4 <h1> elements. Keep only one. Demote the rest to <h2>.",
      "language": "html",
      "code": "<!-- Keep only one <h1> per page -->\n<h1>questr: Expert:innen für Kryptowährungen</h1>",
      "filename": "<main> or <article>"
    },
    {
      "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://www.questr.io/\">\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://www.questr.io/\">\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: \"questr: Expert:innen für Kryptowährungen\",\n  description: \"Expertise für Kryptowährungen und Krypto-Steuer-Tools. Krypto-Buchhaltung, Krypto-Steuerberichte, Krypto-Forensik und Mittelherkunftsnachweise\",\n  openGraph: {\n    title: \"questr: Expert:innen für Kryptowährungen\",\n    description: \"Expertise für Kryptowährungen und Krypto-Steuer-Tools. Krypto-Buchhaltung, Krypto-Steuerberichte, Krypto-Forensik und Mittelherkunftsnachweise\",\n    url: \"https://www.questr.io/\",\n    images: [\"https://yoursite.com/og-image.jpg\"],\n    type: 'website',\n  },\n};"
        }
      ]
    },
    {
      "id": "add_robots_txt",
      "title": "Create /robots.txt",
      "description": "A robots.txt file tells crawlers (including AI bots) what they can and cannot access.",
      "language": "txt",
      "code": "User-agent: *\nAllow: /\n\nSitemap: https://www.questr.io/sitemap.xml",
      "filename": "/robots.txt"
    },
    {
      "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 www.questr.io
Script Рекомендуется
<script src="https://agentready.md/badge.js" data-id="59918481-b8e7-4141-a5eb-d4dd78e5ec87" data-domain="www.questr.io"></script>
Markdown
[![AgentReady.md score for www.questr.io](https://agentready.md/badge/www.questr.io.svg)](https://agentready.md/ru/r/59918481-b8e7-4141-a5eb-d4dd78e5ec87)

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

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

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