認証済み AgentReady.md 証明書
発行日時 sig: 7bc4f93811e27402 検証 →

分析済みURL

https://www.zillow.com/

別のURLを分析

AI-Readyスコア

55 / D

不十分

/ 100

トークン削減量

HTMLトークン 174.830
Markdownトークン 675
削減率 100%

スコア内訳

セマンティックHTML 53/100
コンテンツ効率 63/100
AI発見可能性 25/100
構造化データ 62/100
アクセシビリティ 87/100

新興プロトコル

3件中0件検出

AIエージェントが探すwell-knownエンドポイント。検出されればエージェントが自動的にあなたのサービスを発見・接続できます。

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

サイトにllms.txtファイルがありません。これはAIエージェントがサイト構造を理解するための新しい標準です。

実装方法

llmstxt.org仕様に従って/llms.txtファイルを作成してください。サイトの説明と主要ページへのリンクを含めてください。

ページに<article>または<main>要素がありません。これらのセマンティックコンテナはAIエージェントがメインコンテンツ領域を特定し、ナビゲーション、サイドバー、フッターを無視するのに役立ちます。

実装方法

ページのメインコンテンツの周りに<main>要素を追加し、ブログ投稿や製品説明などの独立したコンテンツブロックには<article>を使用してください。

ページの実際のコンテンツとHTML全体の比率が低いです。ページ重量の多くがコンテンツではなくマークアップ、スクリプト、スタイルです。

実装方法

CSSを外部スタイルシートに移動し、インラインスタイルを削除し、JavaScriptを最小化し、HTMLがコンテンツ構造に集中するようにしてください。

サイトがMarkdown for Agentsに対応していません。このCloudflare標準により、AIエージェントがmarkdown形式でコンテンツをリクエストでき、トークン使用量を約80%削減できます。

実装方法

以下の1つ以上を実装してください:(1) Accept: text/markdownにmarkdownコンテンツで応答。(2) .md URL(例:/page.md)を提供。(3) <link rel="alternate" type="text/markdown">タグを追加。(4) markdown検出用のLink HTTPヘッダーを追加。

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

サイトマップが見つかりません。サイトマップはAIエージェントがサイトのすべてのページを発見するのに役立ちます。

実装方法

すべての公開ページをリストした/sitemap.xmlを作成してください。ほとんどのCMSプラットフォームで自動生成できます。

Content-Signalディレクティブが見つかりません。これらはAIエージェントにコンテンツの使用方法(検索インデックス、AI入力、トレーニングデータ)を伝えます。推奨場所はrobots.txtです。

実装方法

robots.txtにContent-Signalを追加:User-agent: *\nContent-Signal: search=yes, ai-input=yes, ai-train=no。markdown応答のHTTPヘッダーとしても追加できます。

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

Schema.org構造化データが見つかりません。JSON-LDはAIエージェントがページから事実に基づいた構造化情報を抽出するのに役立ちます。

実装方法

Schema.orgマークアップを含む<script type="application/ld+json">ブロックを追加してください。適切なタイプを使用:ブログ投稿にはArticle、製品ページにはProduct、企業ページにはOrganization。

ページが<div>要素に大きく依存しています。<section>、<nav>、<header>、<footer>、<aside>などのセマンティック要素はAIエージェントに意味のある構造を提供します。

実装方法

汎用的な<div>コンテナを適切なセマンティック要素に置き換えてください。テーマ別グループには<section>、ナビゲーションには<nav>、ページ/セクションのヘッダーとフッターには<header>/<footer>を使用してください。

Open Graphタグが不足または不完全です。OGタグはAIエージェント(およびソーシャルプラットフォーム)がページのタイトル、説明、画像を理解するのに役立ちます。

実装方法

ページの<head>にog:title、og:description、og:imageメタタグを追加してください。

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: \"Zillow: Real Estate, Apartments, Mortgages & Home Values\",\n description: \"The leading real estate marketplace. Search millions of for-sale and rental listings, compare Zestimate® home values and connect with local professionals.\",\n openGraph: {\n title: \"Zillow: Real Estate, Apartments, Mortgages & Home Values\",\n description: \"The leading real estate marketplace. Search millions of for-sale and rental listings, compare Zestimate® home values and connect with local professionals.\",\n url: \"https://www.zillow.com/\",\n images: [\"https://yoursite.com/og-image.jpg\"],\n type: 'website',\n },\n};"}] }'>
Markdownトークン: 675
Zillow Group is committed to ensuring digital accessibility for individuals with disabilities. We are continuously working to improve the accessibility of our web experience for everyone, and we welcome feedback and accommodation requests. If you wish to report an issue or seek an accommodation, please [let us know](https://www.zillow.help/contact-us).

[Affiliated Business Arrangement Disclosure](https://www.zillow.com/affiliated-business-arrangement-disclosure/)
Zillow, Inc. holds real estate brokerage [licenses](https://www.zillow.com/c/info/real-estate-licenses/) in multiple states. Zillow (Canada), Inc. holds real estate brokerage [licenses](https://www.zillow.com/c/info/real-estate-licenses/) in multiple provinces.
All mortgage lending products and information provided by Zillow Home Loans, LLC, NMLS #10287. [NMLS Consumer Access](https://www.nmlsconsumeraccess.org/)
Licensed Mortgage Banker, N.Y.S. Department of Financial Services
2600 Michelson Drive, Suite 1201, Irvine, CA 92612 | Equal Housing Lender | [Licensing Information](https://www.zillow.com/homeloans/licensing/)
[§ 442-H New York Standard Operating Procedures](https://www.zillowstatic.com/s3/pfs/static/SOP_NYS_10-4-23.pdf)
[§ New York Fair Housing Notice](https://www.zillowstatic.com/s3/pfs/static/fairhousingnotice_10-4-23.pdf)
TREC: [Information about brokerage services](https://delivery.digitallibrary.zillowgroup.com/public/TRECNO.IABS1-1INFORMATIONABOUTBROKERAGESERVICES_pdf_Original.pdf), [Consumer protection notice](https://www.trec.texas.gov/forms/consumer-protection-notice)
California DRE #1522444[Contact Zillow, Inc. Brokerage](https://www.zillow.com/c/info/contact-us/)

For listings in Canada, the trademarks REALTOR®, REALTORS®, and the REALTOR® logo are controlled by The Canadian Real Estate Association (CREA) and identify real estate professionals who are members of CREA. The trademarks MLS®, Multiple Listing Service® and the associated logos are owned by CREA and identify the quality of services provided by real estate professionals who are members of CREA. Used under license.

-   [![App store logo](https://www.zillowstatic.com/s3/pfs/static/app-store-badge.svg "Download on the App Store")](https://www.zillow.com/buy/app-download/?itc=zw_zw_zw_zillow-footer_btn_ios-download)
-   [![Google play logo](https://www.zillowstatic.com/s3/pfs/static/google-play-badge.svg "Get it on Google Play")](https://www.zillow.com/buy/app-download/?itc=zw_zw_zw_zillow-footer_btn_android-download)

-   [![Zillow logo](https://www.zillowstatic.com/s3/pfs/static/z-logo-default-visual-refresh.svg)](https://www.zillow.com/)

-   © 2006 to 2026 Zillow[Equal Housing Opportunity](https://www.hud.gov/program_offices/fair_housing_equal_opp)
Zillow: Real Estate, Apartments, Mortgages & Home Values

[Skip main navigation](https://www.zillow.com/#skip-topnav-target)

# Rentals. Homes. Agents. Loans.

clear search text buttonSubmit Search

![](https://www.zillowstatic.com/bedrock/app/uploads/sites/5/2024/07/image2-xl%401x.jpg)

###### About Zillow's Recommendations

Recommendations are based on your location and search activity, such as the homes you've viewed and saved and the filters you've used. We use this information to bring similar homes to your attention, so you don't miss out.

###### You have a right to fair housing.

[Learn about New York Fair Housing protections](https://dos.ny.gov/system/files/documents/2021/08/fairhousingnotice.pdf)

-   Real Estate

    -   [Browse all homes](https://www.zillow.com/browse/homes/)

    -   [Albuquerque real estate](https://www.zillow.com/albuquerque-nm/)

    -   [Atlanta real estate](https://www.zillow.com/atlanta-ga/)

    -   [Austin real estate](https://www.zillow.com/austin-tx/)

    -   [Baltimore real estate](https://www.zillow.com/baltimore-md/)

    -   [Boston real estate](https://www.zillow.com/boston-ma/)

    -   [Calgary real estate](https://www.zillow.com/calgary-ab/)

    -   [Charlotte real estate](https://www.zillow.com/charlotte-nc/)

    -   [Chicago real estate](https://www.zillow.com/chicago-il/)

    -   [Cleveland real estate](https://www.zillow.com/cleveland-oh/)

    -   [Colorado Springs real estate](https://www.zillow.com/colorado-springs-co/)

    -   [Columbus real estate](https://www.zillow.com/columbus-oh/)

    -   [Dallas real estate](https://www.zillow.com/dallas-tx/)

    -   [Denver real estate](https://www.zillow.com/denver-co/)

    -   [Detroit real estate](https://www.zillow.com/detroit-mi/)

    -   [Edmonton real estate](https://www.zillow.com/edmonton-ab/)

    -   [El Paso real estate](https://www.zillow.com/el-paso-tx/)

    -   [Fort Worth real estate](https://www.zillow.com/fort-worth-tx/)

    -   [Fresno real estate](https://www.zillow.com/fresno-ca/)

    -   [Houston real estate](https://www.zillow.com/houston-tx/)

    -   [Indianapolis real estate](https://www.zillow.com/indianapolis-in/)

    -   [Jacksonville real estate](https://www.zillow.com/jacksonville-fl/)

    -   [Kansas City real estate](https://www.zillow.com/kansas-city-mo/)

    -   [Las Vegas real estate](https://www.zillow.com/las-vegas-nv/)

    -   [Long Beach real estate](https://www.zillow.com/long-beach-ca/)

    -   [Los Angeles real estate](https://www.zillow.com/los-angeles-ca/)

    -   [Louisville real estate](https://www.zillow.com/louisville-ky/)

    -   [Memphis real estate](https://www.zillow.com/memphis-tn/)

    -   [Mesa real estate](https://www.zillow.com/mesa-az/)

    -   [Miami real estate](https://www.zillow.com/miami-fl/)

    -   [Milwaukee real estate](https://www.zillow.com/milwaukee-wi/)

    -   [Minneapolis real estate](https://www.zillow.com/minneapolis-mn/)

    -   [Nashville real estate](https://www.zillow.com/nashville-tn/)

    -   [New Orleans real estate](https://www.zillow.com/new-orleans-la/)

    -   [New York real estate](https://www.zillow.com/new-york-ny/)

    -   [Oakland real estate](https://www.zillow.com/oakland-ca/)

    -   [Oklahoma real estate](https://www.zillow.com/oklahoma-city-ok/)

    -   [Omaha real estate](https://www.zillow.com/omaha-ne/)

    -   [Ottawa real estate](https://www.zillow.com/ottawa-on/)

    -   [Philadelphia real estate](https://www.zillow.com/philadelphia-pa/)

    -   [Phoenix real estate](https://www.zillow.com/phoenix-az/)

    -   [Portland real estate](https://www.zillow.com/portland-or/)

    -   [Raleigh real estate](https://www.zillow.com/raleigh-nc/)

    -   [Sacramento real estate](https://www.zillow.com/sacramento-ca/)

    -   [San Antonio real estate](https://www.zillow.com/san-antonio-tx/)

    -   [San Diego real estate](https://www.zillow.com/san-diego-ca/)

    -   [San Francisco real estate](https://www.zillow.com/san-francisco-ca/)

    -   [San Jose real estate](https://www.zillow.com/san-jose-ca/)

    -   [Seattle real estate](https://www.zillow.com/seattle-wa/)

    -   [Toronto real estate](https://www.zillow.com/toronto-on/)

    -   [Tucson real estate](https://www.zillow.com/tucson-az/)

    -   [Tulsa real estate](https://www.zillow.com/tulsa-ok/)

    -   [Vancouver real estate](https://www.zillow.com/vancouver-bc/)

    -   [Virginia Beach real estate](https://www.zillow.com/virginia-beach-va/)

    -   [Washington DC real estate](https://www.zillow.com/washington-dc/)

    -   [Wichita real estate](https://www.zillow.com/wichita-ks/)

-   Rentals

    -   [Rental Buildings](https://www.zillow.com/browse/b/)

    -   [Atlanta apartments for rent](https://www.zillow.com/atlanta-ga/apartments/)

    -   [Austin apartments for rent](https://www.zillow.com/austin-tx/apartments/)

    -   [Baltimore apartments for rent](https://www.zillow.com/baltimore-md/apartments/)

    -   [Boston apartments for rent](https://www.zillow.com/boston-ma/apartments/)

    -   [Bronx NYC apartments for rent](https://www.zillow.com/bronx-new-york-city-ny/apartments/)

    -   [Brooklyn NYC apartments for rent](https://www.zillow.com/brooklyn-new-york-city-ny/apartments/)

    -   [Charlotte apartments for rent](https://www.zillow.com/charlotte-nc/apartments/)

    -   [Chicago apartments for rent](https://www.zillow.com/chicago-il/apartments/)

    -   [Dallas apartments for rent](https://www.zillow.com/dallas-tx/apartments/)

    -   [Denver apartments for rent](https://www.zillow.com/denver-co/apartments/)

    -   [Houston apartments for rent](https://www.zillow.com/houston-tx/apartments/)

    -   [Jersey City apartments for rent](https://www.zillow.com/jersey-city-nj/apartments/)

    -   [Long Beach apartments for rent](https://www.zillow.com/long-beach-ca/apartments/)

    -   [Manhattan NYC apartments for rent](https://www.zillow.com/manhattan-new-york-city-ny/apartments/)

    -   [Miami apartments for rent](https://www.zillow.com/miami-fl/apartments/)

    -   [Minneapolis apartments for rent](https://www.zillow.com/minneapolis-mn/apartments/)

    -   [New York City apartments for rent](https://www.zillow.com/new-york-city-ny/apartments/)

    -   [Oakland apartments for rent](https://www.zillow.com/oakland-ca/apartments/)

    -   [Oklahoma City apartments for rent](https://www.zillow.com/oklahoma-city-ok/apartments/)

    -   [Philadelphia apartments for rent](https://www.zillow.com/philadelphia-pa/apartments/)

    -   [Queens NYC apartments for rent](https://www.zillow.com/queens-new-york-city-ny/apartments/)

    -   [Sacramento apartments for rent](https://www.zillow.com/sacramento-ca/apartments/)

    -   [San Francisco apartments for rent](https://www.zillow.com/san-francisco-ca/apartments/)

    -   [Seattle apartments for rent](https://www.zillow.com/seattle-wa/apartments/)

    -   [Washington DC apartments for rent](https://www.zillow.com/washington-dc/apartments/)

    -   [Atlanta houses for rent](https://www.zillow.com/atlanta-ga/rent-houses/)

    -   [Austin houses for rent](https://www.zillow.com/austin-tx/rent-houses/)

    -   [Boston houses for rent](https://www.zillow.com/boston-ma/rent-houses/)

    -   [Charlotte houses for rent](https://www.zillow.com/charlotte-nc/rent-houses/)

    -   [Columbus houses for rent](https://www.zillow.com/columbus-oh/rent-houses/)

    -   [Fort Worth houses for rent](https://www.zillow.com/fort-worth-tx/rent-houses/)

    -   [Fresno houses for rent](https://www.zillow.com/fresno-ca/rent-houses/)

    -   [Houston houses for rent](https://www.zillow.com/houston-tx/rent-houses/)

    -   [Indianapolis houses for rent](https://www.zillow.com/indianapolis-in/rent-houses/)

    -   [Jacksonville houses for rent](https://www.zillow.com/jacksonville-fl/rent-houses/)

    -   [Las Vegas houses for rent](https://www.zillow.com/las-vegas-nv/rent-houses/)

    -   [Memphis houses for rent](https://www.zillow.com/memphis-tn/rent-houses/)

    -   [Milwaukee houses for rent](https://www.zillow.com/milwaukee-wi/rent-houses/)

    -   [Nashville houses for rent](https://www.zillow.com/nashville-tn/rent-houses/)

    -   [Oakland houses for rent](https://www.zillow.com/oakland-ca/rent-houses/)

    -   [Oklahoma City houses for rent](https://www.zillow.com/oklahoma-city-ok/rent-houses/)

    -   [Philadelphia houses for rent](https://www.zillow.com/philadelphia-pa/rent-houses/)

    -   [Phoenix houses for rent](https://www.zillow.com/phoenix-az/rent-houses/)

    -   [Portland houses for rent](https://www.zillow.com/portland-or/rent-houses/)

    -   [San Antonio houses for rent](https://www.zillow.com/san-antonio-tx/rent-houses/)

    -   [San Francisco houses for rent](https://www.zillow.com/san-francisco-ca/rent-houses/)

    -   [San Jose houses for rent](https://www.zillow.com/san-jose-ca/rent-houses/)

    -   [Tampa houses for rent](https://www.zillow.com/tampa-fl/rent-houses/)

    -   [Tucson houses for rent](https://www.zillow.com/tucson-az/rent-houses/)

    -   [Washington DC houses for rent](https://www.zillow.com/washington-dc/rent-houses/)

-   Mortgage Rates

    -   [Current mortgage rates](https://www.zillow.com/mortgage-rates/)

    -   [Alaska mortgage rates](https://www.zillow.com/mortgage-rates/ak/)

    -   [Alabama mortgage rates](https://www.zillow.com/mortgage-rates/al/)

    -   [Arkansas mortgage rates](https://www.zillow.com/mortgage-rates/ar/)

    -   [Arizona mortgage rates](https://www.zillow.com/mortgage-rates/az/)

    -   [California mortgage rates](https://www.zillow.com/mortgage-rates/ca/)

    -   [Colorado mortgage rates](https://www.zillow.com/mortgage-rates/co/)

    -   [Connecticut mortgage rates](https://www.zillow.com/mortgage-rates/ct/)

    -   [Delaware mortgage rates](https://www.zillow.com/mortgage-rates/de/)

    -   [Florida mortgage rates](https://www.zillow.com/mortgage-rates/fl/)

    -   [Georgia mortgage rates](https://www.zillow.com/mortgage-rates/ga/)

    -   [Hawaii mortgage rates](https://www.zillow.com/mortgage-rates/hi/)

    -   [Iowa mortgage rates](https://www.zillow.com/mortgage-rates/ia/)

    -   [Idaho mortgage rates](https://www.zillow.com/mortgage-rates/id/)

    -   [Illinois mortgage rates](https://www.zillow.com/mortgage-rates/il/)

    -   [Indiana mortgage rates](https://www.zillow.com/mortgage-rates/in/)

    -   [Kansas mortgage rates](https://www.zillow.com/mortgage-rates/ks/)

    -   [Kentucky mortgage rates](https://www.zillow.com/mortgage-rates/ky/)

    -   [Louisiana mortgage rates](https://www.zillow.com/mortgage-rates/la/)

    -   [Massachusetts mortgage rates](https://www.zillow.com/mortgage-rates/ma/)

    -   [Maryland mortgage rates](https://www.zillow.com/mortgage-rates/md/)

    -   [Maine mortgage rates](https://www.zillow.com/mortgage-rates/me/)

    -   [Michigan mortgage rates](https://www.zillow.com/mortgage-rates/mi/)

    -   [Minnesota mortgage rates](https://www.zillow.com/mortgage-rates/mn/)

    -   [Missouri mortgage rates](https://www.zillow.com/mortgage-rates/mo/)

    -   [Mississippi mortgage rates](https://www.zillow.com/mortgage-rates/ms/)

    -   [Montana mortgage rates](https://www.zillow.com/mortgage-rates/mt/)

    -   [North Carolina mortgage rates](https://www.zillow.com/mortgage-rates/nc/)

    -   [North Dakota mortgage rates](https://www.zillow.com/mortgage-rates/nd/)

    -   [Nebraska mortgage rates](https://www.zillow.com/mortgage-rates/ne/)

    -   [New Hampshire mortgage rates](https://www.zillow.com/mortgage-rates/nh/)

    -   [New Jersey mortgage rates](https://www.zillow.com/mortgage-rates/nj/)

    -   [New Mexico mortgage rates](https://www.zillow.com/mortgage-rates/nm/)

    -   [Nevada mortgage rates](https://www.zillow.com/mortgage-rates/nv/)

    -   [New York mortgage rates](https://www.zillow.com/mortgage-rates/ny/)

    -   [Ohio mortgage rates](https://www.zillow.com/mortgage-rates/oh/)

    -   [Oklahoma mortgage rates](https://www.zillow.com/mortgage-rates/ok/)

    -   [Oregon mortgage rates](https://www.zillow.com/mortgage-rates/or/)

    -   [Pennsylvania mortgage rates](https://www.zillow.com/mortgage-rates/pa/)

    -   [Rhode Island mortgage rates](https://www.zillow.com/mortgage-rates/ri/)

    -   [South Carolina mortgage rates](https://www.zillow.com/mortgage-rates/sc/)

    -   [South Dakota mortgage rates](https://www.zillow.com/mortgage-rates/sd/)

    -   [Tennessee mortgage rates](https://www.zillow.com/mortgage-rates/tn/)

    -   [Texas mortgage rates](https://www.zillow.com/mortgage-rates/tx/)

    -   [Utah mortgage rates](https://www.zillow.com/mortgage-rates/ut/)

    -   [Virginia mortgage rates](https://www.zillow.com/mortgage-rates/va/)

    -   [Vermont mortgage rates](https://www.zillow.com/mortgage-rates/vt/)

    -   [Washington mortgage rates](https://www.zillow.com/mortgage-rates/wa/)

    -   [Wisconsin mortgage rates](https://www.zillow.com/mortgage-rates/wi/)

    -   [West Virginia mortgage rates](https://www.zillow.com/mortgage-rates/wv/)

    -   [Wyoming mortgage rates](https://www.zillow.com/mortgage-rates/wy/)

-   Browse Homes

    -   [California](https://www.zillow.com/browse/homes/ca/)

    -   [Texas](https://www.zillow.com/browse/homes/tx/)

    -   [New York](https://www.zillow.com/browse/homes/ny/)

    -   [Florida](https://www.zillow.com/browse/homes/fl/)

    -   [Illinois](https://www.zillow.com/browse/homes/il/)

    -   [Pennsylvania](https://www.zillow.com/browse/homes/pa/)

    -   [Ohio](https://www.zillow.com/browse/homes/oh/)

    -   [Michigan](https://www.zillow.com/browse/homes/mi/)

    -   [Georgia](https://www.zillow.com/browse/homes/ga/)

    -   [North Carolina](https://www.zillow.com/browse/homes/nc/)

    -   [New Jersey](https://www.zillow.com/browse/homes/nj/)

    -   [Virginia](https://www.zillow.com/browse/homes/va/)

    -   [Washington](https://www.zillow.com/browse/homes/wa/)

    -   [Massachusetts](https://www.zillow.com/browse/homes/ma/)

    -   [Indiana](https://www.zillow.com/browse/homes/in/)

    -   [Arizona](https://www.zillow.com/browse/homes/az/)

    -   [Tennessee](https://www.zillow.com/browse/homes/tn/)

    -   [Missouri](https://www.zillow.com/browse/homes/mo/)

    -   [Maryland](https://www.zillow.com/browse/homes/md/)

    -   [Wisconsin](https://www.zillow.com/browse/homes/wi/)

    -   [Minnesota](https://www.zillow.com/browse/homes/mn/)

    -   [Colorado](https://www.zillow.com/browse/homes/co/)

    -   [Alabama](https://www.zillow.com/browse/homes/al/)

    -   [South Carolina](https://www.zillow.com/browse/homes/sc/)

    -   [Louisiana](https://www.zillow.com/browse/homes/la/)

    -   [Kentucky](https://www.zillow.com/browse/homes/ky/)

    -   [Oregon](https://www.zillow.com/browse/homes/or/)

    -   [Oklahoma](https://www.zillow.com/browse/homes/ok/)

    -   [Connecticut](https://www.zillow.com/browse/homes/ct/)

    -   [Iowa](https://www.zillow.com/browse/homes/ia/)

    -   [Mississippi](https://www.zillow.com/browse/homes/ms/)

    -   [Arkansas](https://www.zillow.com/browse/homes/ar/)

    -   [Kansas](https://www.zillow.com/browse/homes/ks/)

    -   [Utah](https://www.zillow.com/browse/homes/ut/)

    -   [Nevada](https://www.zillow.com/browse/homes/nv/)

    -   [New Mexico](https://www.zillow.com/browse/homes/nm/)

    -   [West Virginia](https://www.zillow.com/browse/homes/wv/)

    -   [Nebraska](https://www.zillow.com/browse/homes/ne/)

    -   [Idaho](https://www.zillow.com/browse/homes/id/)

    -   [Hawaii](https://www.zillow.com/browse/homes/hi/)

    -   [Maine](https://www.zillow.com/browse/homes/me/)

    -   [New Hampshire](https://www.zillow.com/browse/homes/nh/)

    -   [Rhode Island](https://www.zillow.com/browse/homes/ri/)

    -   [Montana](https://www.zillow.com/browse/homes/mt/)

    -   [Delaware](https://www.zillow.com/browse/homes/de/)

    -   [South Dakota](https://www.zillow.com/browse/homes/sd/)

    -   [Alaska](https://www.zillow.com/browse/homes/ak/)

    -   [North Dakota](https://www.zillow.com/browse/homes/nd/)

    -   [Vermont](https://www.zillow.com/browse/homes/vt/)

    -   [Washington, DC](https://www.zillow.com/browse/homes/dc/district-of-columbia-county/)

    -   [Wyoming](https://www.zillow.com/browse/homes/wy/)

    -   [Puerto Rico](https://www.zillow.com/browse/homes/pr/)

    -   [Virgin Islands](https://www.zillow.com/browse/homes/vi/)

[

Search

](https://www.zillow.com/homes)[

Updates

](https://www.zillow.com/login/updates/)[

Favorites

](https://www.zillow.com/login/favorites/)[

Home Loans

](https://www.zillow.com/homeloans)[

Inbox

](https://www.zillow.com/login/inbox/)

このファイルをサーバーの/index.mdとしてアップロードし、AIエージェントがページのクリーンなバージョンにアクセスできるようにしましょう。Accept: text/markdownコンテンツネゴシエーションを設定して自動的に配信することもできます。

この単一ページ用に生成されたllms.txt

llms.txtをダウンロード
# Zillow

> The leading real estate marketplace. Search millions of for-sale and rental listings, compare Zestimate® home values and connect with local professionals.

## Main
- [Zillow: Real Estate, Apartments, Mortgages & Home Values](https://www.zillow.com/): The leading real estate marketplace. Search millions of for-sale and rental listings, compare Zestimate® home values an…
- [About](https://www.zillow.com/z/corp/about/)
- [Sign inSign in](https://www.zillow.com/auth/user/login?login_mode=redirect&entry_point=topnav)
- [Buy](https://www.zillow.com/homes/for_sale/)
- [Foreclosures](https://www.zillow.com/homes/for_sale/fore_lt/)
- [For sale by owner](https://www.zillow.com/homes/fsbo/)
- [Open houses](https://www.zillow.com/homes/for_sale/1_open/)
- [New construction](https://www.zillow.com/homes/new_homes/)
- [Coming soon](https://www.zillow.com/homes/coming_soon/cmsn_lt/)
- [Recent home sales](https://www.zillow.com/homes/recently_sold/)

## Blog
- [List your property for rent](https://www.zillow.com/rental-manager/post-a-listing/?itc=ltr_zw_ltr_zrm-home_tpnv_post-a-listing)
- [News](https://www.zillow.com/news/)
- [Advocacy](https://www.zillow.com/news/advocacy/)

## Legal
- [Terms of use](https://www.zillow.com/corporate/terms-of-use/)

## Support
- [Contact Zillow, Inc. Brokerage](https://www.zillow.com/c/info/contact-us/)

完全なllms.txtにはドメイン全体の分析が必要です(近日公開)

このファイルをドメインのルートにhttps://www.zillow.com/llms.txtとしてアップロードしてください。ChatGPT、Claude、PerplexityなどのAIエージェントはこのファイルを確認してサイト構造を理解します。

セマンティックHTML

articleまたはmain要素を使用 (0/100)

Missing <article> and <main> elements

適切な見出し階層 (85/100)

1 heading level skip(s)

セマンティックHTML要素を使用 (14/100)

4 semantic elements, 90 divs (ratio: 4%)

意味のある画像alt属性 (83/100)

5/6 images with meaningful alt text

低いdivネスト深度 (84/100)

Avg div depth: 6.6, max: 14

コンテンツ効率

良好なトークン削減率 (100/100)

100% token reduction (HTML→Markdown)

良好なコンテンツ対ノイズ比 (0/100)

Content ratio: 0.3% (1448 content chars / 480950 HTML bytes)

最小限のインラインスタイル (100/100)

3/1332 elements with inline styles (0.2%)

適切なページ重量 (50/100)

HTML size: 470KB

AI発見可能性

llms.txtファイルあり (0/100)

No llms.txt found

robots.txtファイルあり (100/100)

robots.txt exists

robots.txtがAIボットを許可 (100/100)

All major AI bots allowed

sitemap.xmlあり (0/100)

No sitemap found

Markdown for Agentsサポート (0/100)
&#10007; Accept: text/markdown &#10007; .md URL &#10007; <link> tag &#10007; Link header
Content-Signalあり(robots.txtまたはHTTPヘッダー) (0/100)
&#10003; robots.txt &#10003; HTTP header &#10007; Policy

構造化データ

Schema.org / JSON-LDあり (0/100)

No JSON-LD / Schema.org found

Open Graphタグあり (67/100)

2/3 OG tags present

メタディスクリプションあり (100/100)

Meta description: 154 chars

正規URLあり (100/100)

Canonical URL present

lang属性あり (100/100)

lang="en"

アクセシビリティ

JavaScript不要でコンテンツ利用可能 (100/100)

Content available without JavaScript

適切なページサイズ (80/100)

Page size: 470KB

HTML内でコンテンツが早い位置に配置 (75/100)

Main content starts at 37% of HTML

{
  "url": "https://www.zillow.com/",
  "timestamp": 1779976446007,
  "fetch": {
    "mode": "simple",
    "timeMs": 417,
    "htmlSizeBytes": 480950,
    "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": "Zillow: Real Estate, Apartments, Mortgages & Home Values",
    "excerpt": "The leading real estate marketplace. Search millions of for-sale and rental listings, compare Zestimate® home values and connect with local professionals.",
    "byline": null,
    "siteName": "Zillow",
    "lang": "en",
    "contentLength": 1448,
    "metadata": {
      "description": "The leading real estate marketplace. Search millions of for-sale and rental listings, compare Zestimate® home values and connect with local professionals.",
      "ogTitle": "Zillow: Real Estate, Apartments, Mortgages & Home Values",
      "ogDescription": "The leading real estate marketplace. Search millions of for-sale and rental listings, compare Zestimate® home values and connect with local professionals.",
      "ogImage": null,
      "ogType": null,
      "canonical": "https://www.zillow.com/",
      "lang": "en",
      "schemas": [],
      "robotsMeta": null,
      "author": null,
      "generator": null,
      "markdownAlternateHref": null
    }
  },
  "markdown": "Zillow Group is committed to ensuring digital accessibility for individuals with disabilities. We are continuously working to improve the accessibility of our web experience for everyone, and we welcome feedback and accommodation requests. If you wish to report an issue or seek an accommodation, please [let us know](https://www.zillow.help/contact-us).\n\n[Affiliated Business Arrangement Disclosure](https://www.zillow.com/affiliated-business-arrangement-disclosure/)\nZillow, Inc. holds real estate brokerage [licenses](https://www.zillow.com/c/info/real-estate-licenses/) in multiple states. Zillow (Canada), Inc. holds real estate brokerage [licenses](https://www.zillow.com/c/info/real-estate-licenses/) in multiple provinces.\nAll mortgage lending products and information provided by Zillow Home Loans, LLC, NMLS #10287. [NMLS Consumer Access](https://www.nmlsconsumeraccess.org/)\nLicensed Mortgage Banker, N.Y.S. Department of Financial Services\n2600 Michelson Drive, Suite 1201, Irvine, CA 92612 | Equal Housing Lender | [Licensing Information](https://www.zillow.com/homeloans/licensing/)\n[§ 442-H New York Standard Operating Procedures](https://www.zillowstatic.com/s3/pfs/static/SOP_NYS_10-4-23.pdf)\n[§ New York Fair Housing Notice](https://www.zillowstatic.com/s3/pfs/static/fairhousingnotice_10-4-23.pdf)\nTREC: [Information about brokerage services](https://delivery.digitallibrary.zillowgroup.com/public/TRECNO.IABS1-1INFORMATIONABOUTBROKERAGESERVICES_pdf_Original.pdf), [Consumer protection notice](https://www.trec.texas.gov/forms/consumer-protection-notice)\nCalifornia DRE #1522444[Contact Zillow, Inc. Brokerage](https://www.zillow.com/c/info/contact-us/)\n\nFor listings in Canada, the trademarks REALTOR®, REALTORS®, and the REALTOR® logo are controlled by The Canadian Real Estate Association (CREA) and identify real estate professionals who are members of CREA. The trademarks MLS®, Multiple Listing Service® and the associated logos are owned by CREA and identify the quality of services provided by real estate professionals who are members of CREA. Used under license.\n\n-   [![App store logo](https://www.zillowstatic.com/s3/pfs/static/app-store-badge.svg \"Download on the App Store\")](https://www.zillow.com/buy/app-download/?itc=zw_zw_zw_zillow-footer_btn_ios-download)\n-   [![Google play logo](https://www.zillowstatic.com/s3/pfs/static/google-play-badge.svg \"Get it on Google Play\")](https://www.zillow.com/buy/app-download/?itc=zw_zw_zw_zillow-footer_btn_android-download)\n\n-   [![Zillow logo](https://www.zillowstatic.com/s3/pfs/static/z-logo-default-visual-refresh.svg)](https://www.zillow.com/)\n\n-   © 2006 to 2026 Zillow[Equal Housing Opportunity](https://www.hud.gov/program_offices/fair_housing_equal_opp)\n",
  "fullPageMarkdown": "Zillow: Real Estate, Apartments, Mortgages & Home Values\n\n[Skip main navigation](https://www.zillow.com/#skip-topnav-target)\n\n# Rentals. Homes. Agents. Loans.\n\nclear search text buttonSubmit Search\n\n![](https://www.zillowstatic.com/bedrock/app/uploads/sites/5/2024/07/image2-xl%401x.jpg)\n\n###### About Zillow's Recommendations\n\nRecommendations are based on your location and search activity, such as the homes you've viewed and saved and the filters you've used. We use this information to bring similar homes to your attention, so you don't miss out.\n\n###### You have a right to fair housing.\n\n[Learn about New York Fair Housing protections](https://dos.ny.gov/system/files/documents/2021/08/fairhousingnotice.pdf)\n\n-   Real Estate\n\n    -   [Browse all homes](https://www.zillow.com/browse/homes/)\n\n    -   [Albuquerque real estate](https://www.zillow.com/albuquerque-nm/)\n\n    -   [Atlanta real estate](https://www.zillow.com/atlanta-ga/)\n\n    -   [Austin real estate](https://www.zillow.com/austin-tx/)\n\n    -   [Baltimore real estate](https://www.zillow.com/baltimore-md/)\n\n    -   [Boston real estate](https://www.zillow.com/boston-ma/)\n\n    -   [Calgary real estate](https://www.zillow.com/calgary-ab/)\n\n    -   [Charlotte real estate](https://www.zillow.com/charlotte-nc/)\n\n    -   [Chicago real estate](https://www.zillow.com/chicago-il/)\n\n    -   [Cleveland real estate](https://www.zillow.com/cleveland-oh/)\n\n    -   [Colorado Springs real estate](https://www.zillow.com/colorado-springs-co/)\n\n    -   [Columbus real estate](https://www.zillow.com/columbus-oh/)\n\n    -   [Dallas real estate](https://www.zillow.com/dallas-tx/)\n\n    -   [Denver real estate](https://www.zillow.com/denver-co/)\n\n    -   [Detroit real estate](https://www.zillow.com/detroit-mi/)\n\n    -   [Edmonton real estate](https://www.zillow.com/edmonton-ab/)\n\n    -   [El Paso real estate](https://www.zillow.com/el-paso-tx/)\n\n    -   [Fort Worth real estate](https://www.zillow.com/fort-worth-tx/)\n\n    -   [Fresno real estate](https://www.zillow.com/fresno-ca/)\n\n    -   [Houston real estate](https://www.zillow.com/houston-tx/)\n\n    -   [Indianapolis real estate](https://www.zillow.com/indianapolis-in/)\n\n    -   [Jacksonville real estate](https://www.zillow.com/jacksonville-fl/)\n\n    -   [Kansas City real estate](https://www.zillow.com/kansas-city-mo/)\n\n    -   [Las Vegas real estate](https://www.zillow.com/las-vegas-nv/)\n\n    -   [Long Beach real estate](https://www.zillow.com/long-beach-ca/)\n\n    -   [Los Angeles real estate](https://www.zillow.com/los-angeles-ca/)\n\n    -   [Louisville real estate](https://www.zillow.com/louisville-ky/)\n\n    -   [Memphis real estate](https://www.zillow.com/memphis-tn/)\n\n    -   [Mesa real estate](https://www.zillow.com/mesa-az/)\n\n    -   [Miami real estate](https://www.zillow.com/miami-fl/)\n\n    -   [Milwaukee real estate](https://www.zillow.com/milwaukee-wi/)\n\n    -   [Minneapolis real estate](https://www.zillow.com/minneapolis-mn/)\n\n    -   [Nashville real estate](https://www.zillow.com/nashville-tn/)\n\n    -   [New Orleans real estate](https://www.zillow.com/new-orleans-la/)\n\n    -   [New York real estate](https://www.zillow.com/new-york-ny/)\n\n    -   [Oakland real estate](https://www.zillow.com/oakland-ca/)\n\n    -   [Oklahoma real estate](https://www.zillow.com/oklahoma-city-ok/)\n\n    -   [Omaha real estate](https://www.zillow.com/omaha-ne/)\n\n    -   [Ottawa real estate](https://www.zillow.com/ottawa-on/)\n\n    -   [Philadelphia real estate](https://www.zillow.com/philadelphia-pa/)\n\n    -   [Phoenix real estate](https://www.zillow.com/phoenix-az/)\n\n    -   [Portland real estate](https://www.zillow.com/portland-or/)\n\n    -   [Raleigh real estate](https://www.zillow.com/raleigh-nc/)\n\n    -   [Sacramento real estate](https://www.zillow.com/sacramento-ca/)\n\n    -   [San Antonio real estate](https://www.zillow.com/san-antonio-tx/)\n\n    -   [San Diego real estate](https://www.zillow.com/san-diego-ca/)\n\n    -   [San Francisco real estate](https://www.zillow.com/san-francisco-ca/)\n\n    -   [San Jose real estate](https://www.zillow.com/san-jose-ca/)\n\n    -   [Seattle real estate](https://www.zillow.com/seattle-wa/)\n\n    -   [Toronto real estate](https://www.zillow.com/toronto-on/)\n\n    -   [Tucson real estate](https://www.zillow.com/tucson-az/)\n\n    -   [Tulsa real estate](https://www.zillow.com/tulsa-ok/)\n\n    -   [Vancouver real estate](https://www.zillow.com/vancouver-bc/)\n\n    -   [Virginia Beach real estate](https://www.zillow.com/virginia-beach-va/)\n\n    -   [Washington DC real estate](https://www.zillow.com/washington-dc/)\n\n    -   [Wichita real estate](https://www.zillow.com/wichita-ks/)\n\n-   Rentals\n\n    -   [Rental Buildings](https://www.zillow.com/browse/b/)\n\n    -   [Atlanta apartments for rent](https://www.zillow.com/atlanta-ga/apartments/)\n\n    -   [Austin apartments for rent](https://www.zillow.com/austin-tx/apartments/)\n\n    -   [Baltimore apartments for rent](https://www.zillow.com/baltimore-md/apartments/)\n\n    -   [Boston apartments for rent](https://www.zillow.com/boston-ma/apartments/)\n\n    -   [Bronx NYC apartments for rent](https://www.zillow.com/bronx-new-york-city-ny/apartments/)\n\n    -   [Brooklyn NYC apartments for rent](https://www.zillow.com/brooklyn-new-york-city-ny/apartments/)\n\n    -   [Charlotte apartments for rent](https://www.zillow.com/charlotte-nc/apartments/)\n\n    -   [Chicago apartments for rent](https://www.zillow.com/chicago-il/apartments/)\n\n    -   [Dallas apartments for rent](https://www.zillow.com/dallas-tx/apartments/)\n\n    -   [Denver apartments for rent](https://www.zillow.com/denver-co/apartments/)\n\n    -   [Houston apartments for rent](https://www.zillow.com/houston-tx/apartments/)\n\n    -   [Jersey City apartments for rent](https://www.zillow.com/jersey-city-nj/apartments/)\n\n    -   [Long Beach apartments for rent](https://www.zillow.com/long-beach-ca/apartments/)\n\n    -   [Manhattan NYC apartments for rent](https://www.zillow.com/manhattan-new-york-city-ny/apartments/)\n\n    -   [Miami apartments for rent](https://www.zillow.com/miami-fl/apartments/)\n\n    -   [Minneapolis apartments for rent](https://www.zillow.com/minneapolis-mn/apartments/)\n\n    -   [New York City apartments for rent](https://www.zillow.com/new-york-city-ny/apartments/)\n\n    -   [Oakland apartments for rent](https://www.zillow.com/oakland-ca/apartments/)\n\n    -   [Oklahoma City apartments for rent](https://www.zillow.com/oklahoma-city-ok/apartments/)\n\n    -   [Philadelphia apartments for rent](https://www.zillow.com/philadelphia-pa/apartments/)\n\n    -   [Queens NYC apartments for rent](https://www.zillow.com/queens-new-york-city-ny/apartments/)\n\n    -   [Sacramento apartments for rent](https://www.zillow.com/sacramento-ca/apartments/)\n\n    -   [San Francisco apartments for rent](https://www.zillow.com/san-francisco-ca/apartments/)\n\n    -   [Seattle apartments for rent](https://www.zillow.com/seattle-wa/apartments/)\n\n    -   [Washington DC apartments for rent](https://www.zillow.com/washington-dc/apartments/)\n\n    -   [Atlanta houses for rent](https://www.zillow.com/atlanta-ga/rent-houses/)\n\n    -   [Austin houses for rent](https://www.zillow.com/austin-tx/rent-houses/)\n\n    -   [Boston houses for rent](https://www.zillow.com/boston-ma/rent-houses/)\n\n    -   [Charlotte houses for rent](https://www.zillow.com/charlotte-nc/rent-houses/)\n\n    -   [Columbus houses for rent](https://www.zillow.com/columbus-oh/rent-houses/)\n\n    -   [Fort Worth houses for rent](https://www.zillow.com/fort-worth-tx/rent-houses/)\n\n    -   [Fresno houses for rent](https://www.zillow.com/fresno-ca/rent-houses/)\n\n    -   [Houston houses for rent](https://www.zillow.com/houston-tx/rent-houses/)\n\n    -   [Indianapolis houses for rent](https://www.zillow.com/indianapolis-in/rent-houses/)\n\n    -   [Jacksonville houses for rent](https://www.zillow.com/jacksonville-fl/rent-houses/)\n\n    -   [Las Vegas houses for rent](https://www.zillow.com/las-vegas-nv/rent-houses/)\n\n    -   [Memphis houses for rent](https://www.zillow.com/memphis-tn/rent-houses/)\n\n    -   [Milwaukee houses for rent](https://www.zillow.com/milwaukee-wi/rent-houses/)\n\n    -   [Nashville houses for rent](https://www.zillow.com/nashville-tn/rent-houses/)\n\n    -   [Oakland houses for rent](https://www.zillow.com/oakland-ca/rent-houses/)\n\n    -   [Oklahoma City houses for rent](https://www.zillow.com/oklahoma-city-ok/rent-houses/)\n\n    -   [Philadelphia houses for rent](https://www.zillow.com/philadelphia-pa/rent-houses/)\n\n    -   [Phoenix houses for rent](https://www.zillow.com/phoenix-az/rent-houses/)\n\n    -   [Portland houses for rent](https://www.zillow.com/portland-or/rent-houses/)\n\n    -   [San Antonio houses for rent](https://www.zillow.com/san-antonio-tx/rent-houses/)\n\n    -   [San Francisco houses for rent](https://www.zillow.com/san-francisco-ca/rent-houses/)\n\n    -   [San Jose houses for rent](https://www.zillow.com/san-jose-ca/rent-houses/)\n\n    -   [Tampa houses for rent](https://www.zillow.com/tampa-fl/rent-houses/)\n\n    -   [Tucson houses for rent](https://www.zillow.com/tucson-az/rent-houses/)\n\n    -   [Washington DC houses for rent](https://www.zillow.com/washington-dc/rent-houses/)\n\n-   Mortgage Rates\n\n    -   [Current mortgage rates](https://www.zillow.com/mortgage-rates/)\n\n    -   [Alaska mortgage rates](https://www.zillow.com/mortgage-rates/ak/)\n\n    -   [Alabama mortgage rates](https://www.zillow.com/mortgage-rates/al/)\n\n    -   [Arkansas mortgage rates](https://www.zillow.com/mortgage-rates/ar/)\n\n    -   [Arizona mortgage rates](https://www.zillow.com/mortgage-rates/az/)\n\n    -   [California mortgage rates](https://www.zillow.com/mortgage-rates/ca/)\n\n    -   [Colorado mortgage rates](https://www.zillow.com/mortgage-rates/co/)\n\n    -   [Connecticut mortgage rates](https://www.zillow.com/mortgage-rates/ct/)\n\n    -   [Delaware mortgage rates](https://www.zillow.com/mortgage-rates/de/)\n\n    -   [Florida mortgage rates](https://www.zillow.com/mortgage-rates/fl/)\n\n    -   [Georgia mortgage rates](https://www.zillow.com/mortgage-rates/ga/)\n\n    -   [Hawaii mortgage rates](https://www.zillow.com/mortgage-rates/hi/)\n\n    -   [Iowa mortgage rates](https://www.zillow.com/mortgage-rates/ia/)\n\n    -   [Idaho mortgage rates](https://www.zillow.com/mortgage-rates/id/)\n\n    -   [Illinois mortgage rates](https://www.zillow.com/mortgage-rates/il/)\n\n    -   [Indiana mortgage rates](https://www.zillow.com/mortgage-rates/in/)\n\n    -   [Kansas mortgage rates](https://www.zillow.com/mortgage-rates/ks/)\n\n    -   [Kentucky mortgage rates](https://www.zillow.com/mortgage-rates/ky/)\n\n    -   [Louisiana mortgage rates](https://www.zillow.com/mortgage-rates/la/)\n\n    -   [Massachusetts mortgage rates](https://www.zillow.com/mortgage-rates/ma/)\n\n    -   [Maryland mortgage rates](https://www.zillow.com/mortgage-rates/md/)\n\n    -   [Maine mortgage rates](https://www.zillow.com/mortgage-rates/me/)\n\n    -   [Michigan mortgage rates](https://www.zillow.com/mortgage-rates/mi/)\n\n    -   [Minnesota mortgage rates](https://www.zillow.com/mortgage-rates/mn/)\n\n    -   [Missouri mortgage rates](https://www.zillow.com/mortgage-rates/mo/)\n\n    -   [Mississippi mortgage rates](https://www.zillow.com/mortgage-rates/ms/)\n\n    -   [Montana mortgage rates](https://www.zillow.com/mortgage-rates/mt/)\n\n    -   [North Carolina mortgage rates](https://www.zillow.com/mortgage-rates/nc/)\n\n    -   [North Dakota mortgage rates](https://www.zillow.com/mortgage-rates/nd/)\n\n    -   [Nebraska mortgage rates](https://www.zillow.com/mortgage-rates/ne/)\n\n    -   [New Hampshire mortgage rates](https://www.zillow.com/mortgage-rates/nh/)\n\n    -   [New Jersey mortgage rates](https://www.zillow.com/mortgage-rates/nj/)\n\n    -   [New Mexico mortgage rates](https://www.zillow.com/mortgage-rates/nm/)\n\n    -   [Nevada mortgage rates](https://www.zillow.com/mortgage-rates/nv/)\n\n    -   [New York mortgage rates](https://www.zillow.com/mortgage-rates/ny/)\n\n    -   [Ohio mortgage rates](https://www.zillow.com/mortgage-rates/oh/)\n\n    -   [Oklahoma mortgage rates](https://www.zillow.com/mortgage-rates/ok/)\n\n    -   [Oregon mortgage rates](https://www.zillow.com/mortgage-rates/or/)\n\n    -   [Pennsylvania mortgage rates](https://www.zillow.com/mortgage-rates/pa/)\n\n    -   [Rhode Island mortgage rates](https://www.zillow.com/mortgage-rates/ri/)\n\n    -   [South Carolina mortgage rates](https://www.zillow.com/mortgage-rates/sc/)\n\n    -   [South Dakota mortgage rates](https://www.zillow.com/mortgage-rates/sd/)\n\n    -   [Tennessee mortgage rates](https://www.zillow.com/mortgage-rates/tn/)\n\n    -   [Texas mortgage rates](https://www.zillow.com/mortgage-rates/tx/)\n\n    -   [Utah mortgage rates](https://www.zillow.com/mortgage-rates/ut/)\n\n    -   [Virginia mortgage rates](https://www.zillow.com/mortgage-rates/va/)\n\n    -   [Vermont mortgage rates](https://www.zillow.com/mortgage-rates/vt/)\n\n    -   [Washington mortgage rates](https://www.zillow.com/mortgage-rates/wa/)\n\n    -   [Wisconsin mortgage rates](https://www.zillow.com/mortgage-rates/wi/)\n\n    -   [West Virginia mortgage rates](https://www.zillow.com/mortgage-rates/wv/)\n\n    -   [Wyoming mortgage rates](https://www.zillow.com/mortgage-rates/wy/)\n\n-   Browse Homes\n\n    -   [California](https://www.zillow.com/browse/homes/ca/)\n\n    -   [Texas](https://www.zillow.com/browse/homes/tx/)\n\n    -   [New York](https://www.zillow.com/browse/homes/ny/)\n\n    -   [Florida](https://www.zillow.com/browse/homes/fl/)\n\n    -   [Illinois](https://www.zillow.com/browse/homes/il/)\n\n    -   [Pennsylvania](https://www.zillow.com/browse/homes/pa/)\n\n    -   [Ohio](https://www.zillow.com/browse/homes/oh/)\n\n    -   [Michigan](https://www.zillow.com/browse/homes/mi/)\n\n    -   [Georgia](https://www.zillow.com/browse/homes/ga/)\n\n    -   [North Carolina](https://www.zillow.com/browse/homes/nc/)\n\n    -   [New Jersey](https://www.zillow.com/browse/homes/nj/)\n\n    -   [Virginia](https://www.zillow.com/browse/homes/va/)\n\n    -   [Washington](https://www.zillow.com/browse/homes/wa/)\n\n    -   [Massachusetts](https://www.zillow.com/browse/homes/ma/)\n\n    -   [Indiana](https://www.zillow.com/browse/homes/in/)\n\n    -   [Arizona](https://www.zillow.com/browse/homes/az/)\n\n    -   [Tennessee](https://www.zillow.com/browse/homes/tn/)\n\n    -   [Missouri](https://www.zillow.com/browse/homes/mo/)\n\n    -   [Maryland](https://www.zillow.com/browse/homes/md/)\n\n    -   [Wisconsin](https://www.zillow.com/browse/homes/wi/)\n\n    -   [Minnesota](https://www.zillow.com/browse/homes/mn/)\n\n    -   [Colorado](https://www.zillow.com/browse/homes/co/)\n\n    -   [Alabama](https://www.zillow.com/browse/homes/al/)\n\n    -   [South Carolina](https://www.zillow.com/browse/homes/sc/)\n\n    -   [Louisiana](https://www.zillow.com/browse/homes/la/)\n\n    -   [Kentucky](https://www.zillow.com/browse/homes/ky/)\n\n    -   [Oregon](https://www.zillow.com/browse/homes/or/)\n\n    -   [Oklahoma](https://www.zillow.com/browse/homes/ok/)\n\n    -   [Connecticut](https://www.zillow.com/browse/homes/ct/)\n\n    -   [Iowa](https://www.zillow.com/browse/homes/ia/)\n\n    -   [Mississippi](https://www.zillow.com/browse/homes/ms/)\n\n    -   [Arkansas](https://www.zillow.com/browse/homes/ar/)\n\n    -   [Kansas](https://www.zillow.com/browse/homes/ks/)\n\n    -   [Utah](https://www.zillow.com/browse/homes/ut/)\n\n    -   [Nevada](https://www.zillow.com/browse/homes/nv/)\n\n    -   [New Mexico](https://www.zillow.com/browse/homes/nm/)\n\n    -   [West Virginia](https://www.zillow.com/browse/homes/wv/)\n\n    -   [Nebraska](https://www.zillow.com/browse/homes/ne/)\n\n    -   [Idaho](https://www.zillow.com/browse/homes/id/)\n\n    -   [Hawaii](https://www.zillow.com/browse/homes/hi/)\n\n    -   [Maine](https://www.zillow.com/browse/homes/me/)\n\n    -   [New Hampshire](https://www.zillow.com/browse/homes/nh/)\n\n    -   [Rhode Island](https://www.zillow.com/browse/homes/ri/)\n\n    -   [Montana](https://www.zillow.com/browse/homes/mt/)\n\n    -   [Delaware](https://www.zillow.com/browse/homes/de/)\n\n    -   [South Dakota](https://www.zillow.com/browse/homes/sd/)\n\n    -   [Alaska](https://www.zillow.com/browse/homes/ak/)\n\n    -   [North Dakota](https://www.zillow.com/browse/homes/nd/)\n\n    -   [Vermont](https://www.zillow.com/browse/homes/vt/)\n\n    -   [Washington, DC](https://www.zillow.com/browse/homes/dc/district-of-columbia-county/)\n\n    -   [Wyoming](https://www.zillow.com/browse/homes/wy/)\n\n    -   [Puerto Rico](https://www.zillow.com/browse/homes/pr/)\n\n    -   [Virgin Islands](https://www.zillow.com/browse/homes/vi/)\n\n[\n\nSearch\n\n](https://www.zillow.com/homes)[\n\nUpdates\n\n](https://www.zillow.com/login/updates/)[\n\nFavorites\n\n](https://www.zillow.com/login/favorites/)[\n\nHome Loans\n\n](https://www.zillow.com/homeloans)[\n\nInbox\n\n](https://www.zillow.com/login/inbox/)\n",
  "markdownStats": {
    "images": 3,
    "links": 15,
    "tables": 0,
    "codeBlocks": 0,
    "headings": 0
  },
  "tokens": {
    "htmlTokens": 174830,
    "markdownTokens": 675,
    "reduction": 174155,
    "reductionPercent": 100
  },
  "score": {
    "score": 55,
    "grade": "D",
    "dimensions": {
      "semanticHtml": {
        "score": 53,
        "weight": 20,
        "grade": "D",
        "checks": {
          "uses_article_or_main": {
            "score": 0,
            "weight": 20,
            "details": "Missing <article> and <main> elements"
          },
          "proper_heading_hierarchy": {
            "score": 85,
            "weight": 25,
            "details": "1 heading level skip(s)"
          },
          "semantic_elements": {
            "score": 14,
            "weight": 20,
            "details": "4 semantic elements, 90 divs (ratio: 4%)"
          },
          "meaningful_alt_texts": {
            "score": 83,
            "weight": 15,
            "details": "5/6 images with meaningful alt text"
          },
          "low_div_nesting": {
            "score": 84,
            "weight": 20,
            "details": "Avg div depth: 6.6, max: 14"
          }
        }
      },
      "contentEfficiency": {
        "score": 63,
        "weight": 25,
        "grade": "C",
        "checks": {
          "token_reduction_ratio": {
            "score": 100,
            "weight": 40,
            "details": "100% token reduction (HTML→Markdown)"
          },
          "content_to_noise_ratio": {
            "score": 0,
            "weight": 30,
            "details": "Content ratio: 0.3% (1448 content chars / 480950 HTML bytes)"
          },
          "minimal_inline_styles": {
            "score": 100,
            "weight": 15,
            "details": "3/1332 elements with inline styles (0.2%)"
          },
          "reasonable_page_weight": {
            "score": 50,
            "weight": 15,
            "details": "HTML size: 470KB"
          }
        }
      },
      "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": 0,
            "weight": 30,
            "details": "No JSON-LD / Schema.org found"
          },
          "has_open_graph": {
            "score": 67,
            "weight": 25,
            "details": "2/3 OG tags present"
          },
          "has_meta_description": {
            "score": 100,
            "weight": 20,
            "details": "Meta description: 154 chars"
          },
          "has_canonical_url": {
            "score": 100,
            "weight": 15,
            "details": "Canonical URL present"
          },
          "has_lang_attribute": {
            "score": 100,
            "weight": 10,
            "details": "lang=\"en\""
          }
        }
      },
      "accessibility": {
        "score": 87,
        "weight": 15,
        "grade": "B",
        "checks": {
          "content_without_js": {
            "score": 100,
            "weight": 40,
            "details": "Content available without JavaScript"
          },
          "reasonable_page_size": {
            "score": 80,
            "weight": 30,
            "details": "Page size: 470KB"
          },
          "fast_content_position": {
            "score": 75,
            "weight": 30,
            "details": "Main content starts at 37% 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_article_main",
      "priority": "critical",
      "category": "semanticHtml",
      "titleKey": "rec.add_article_main.title",
      "descriptionKey": "rec.add_article_main.description",
      "howToKey": "rec.add_article_main.howto",
      "effort": "quick-win",
      "estimatedImpact": 8,
      "checkScore": 0,
      "checkDetails": "Missing <article> and <main> elements"
    },
    {
      "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.3% (1448 content chars / 480950 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_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_schema_org",
      "priority": "high",
      "category": "structuredData",
      "titleKey": "rec.add_schema_org.title",
      "descriptionKey": "rec.add_schema_org.description",
      "howToKey": "rec.add_schema_org.howto",
      "effort": "moderate",
      "estimatedImpact": 6,
      "checkScore": 0,
      "checkDetails": "No JSON-LD / Schema.org found"
    },
    {
      "id": "add_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": 14,
      "checkDetails": "4 semantic elements, 90 divs (ratio: 4%)"
    },
    {
      "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": "# Zillow\n\n> The leading real estate marketplace. Search millions of for-sale and rental listings, compare Zestimate® home values and connect with local professionals.\n\n## Main\n- [Zillow: Real Estate, Apartments, Mortgages & Home Values](https://www.zillow.com/): The leading real estate marketplace. Search millions of for-sale and rental listings, compare Zestimate® home values an…\n- [About](https://www.zillow.com/z/corp/about/)\n- [Sign inSign in](https://www.zillow.com/auth/user/login?login_mode=redirect&entry_point=topnav)\n- [Buy](https://www.zillow.com/homes/for_sale/)\n- [Foreclosures](https://www.zillow.com/homes/for_sale/fore_lt/)\n- [For sale by owner](https://www.zillow.com/homes/fsbo/)\n- [Open houses](https://www.zillow.com/homes/for_sale/1_open/)\n- [New construction](https://www.zillow.com/homes/new_homes/)\n- [Coming soon](https://www.zillow.com/homes/coming_soon/cmsn_lt/)\n- [Recent home sales](https://www.zillow.com/homes/recently_sold/)\n\n## Blog\n- [List your property for rent](https://www.zillow.com/rental-manager/post-a-listing/?itc=ltr_zw_ltr_zrm-home_tpnv_post-a-listing)\n- [News](https://www.zillow.com/news/)\n- [Advocacy](https://www.zillow.com/news/advocacy/)\n\n## Legal\n- [Terms of use](https://www.zillow.com/corporate/terms-of-use/)\n\n## Support\n- [Contact Zillow, Inc. Brokerage](https://www.zillow.com/c/info/contact-us/)\n\n",
  "llmsTxtExisting": null,
  "emergingProtocols": {
    "oauthDiscovery": {
      "exists": false,
      "url": "https://www.zillow.com/.well-known/oauth-authorization-server"
    },
    "mcpServerCard": {
      "exists": false,
      "url": "https://www.zillow.com/.well-known/mcp.json"
    },
    "a2aAgentCard": {
      "exists": false,
      "url": "https://www.zillow.com/.well-known/agent.json"
    },
    "count": 0
  },
  "snippets": [
    {
      "id": "add_llms_txt",
      "title": "Create /llms.txt",
      "description": "Upload this file to your web root. It tells AI agents what your site is about and which pages matter.",
      "language": "markdown",
      "code": "# Zillow\n\n> The leading real estate marketplace. Search millions of for-sale and rental listings, compare Zestimate® home values and connect with local professionals.\n\n## Main\n- [Zillow: Real Estate, Apartments, Mortgages & Home Values](https://www.zillow.com/): The leading real estate marketplace. Search millions of for-sale and rental listings, compare Zestimate® home values an…\n- [About](https://www.zillow.com/z/corp/about/)\n- [Sign inSign in](https://www.zillow.com/auth/user/login?login_mode=redirect&entry_point=topnav)\n- [Buy](https://www.zillow.com/homes/for_sale/)\n- [Foreclosures](https://www.zillow.com/homes/for_sale/fore_lt/)\n- [For sale by owner](https://www.zillow.com/homes/fsbo/)\n- [Open houses](https://www.zillow.com/homes/for_sale/1_open/)\n- [New construction](https://www.zillow.com/homes/new_homes/)\n- [Coming soon](https://www.zillow.com/homes/coming_soon/cmsn_lt/)\n- [Recent home sales](https://www.zillow.com/homes/recently_sold/)\n\n## Blog\n- [List your property for rent](https://www.zillow.com/rental-manager/post-a-listing/?itc=ltr_zw_ltr_zrm-home_tpnv_post-a-listing)\n- [News](https://www.zillow.com/news/)\n- [Advocacy](https://www.zillow.com/news/advocacy/)\n\n## Legal\n- [Terms of use](https://www.zillow.com/corporate/terms-of-use/)\n\n## Support\n- [Contact Zillow, Inc. Brokerage](https://www.zillow.com/c/info/contact-us/)\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://www.zillow.com/\">\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.zillow.com/\">\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: \"Zillow: Real Estate, Apartments, Mortgages & Home Values\",\n  description: \"The leading real estate marketplace. Search millions of for-sale and rental listings, compare Zestimate® home values and connect with local professionals.\",\n  openGraph: {\n    title: \"Zillow: Real Estate, Apartments, Mortgages & Home Values\",\n    description: \"The leading real estate marketplace. Search millions of for-sale and rental listings, compare Zestimate® home values and connect with local professionals.\",\n    url: \"https://www.zillow.com/\",\n    images: [\"https://yoursite.com/og-image.jpg\"],\n    type: 'website',\n  },\n};"
        }
      ]
    },
    {
      "id": "add_schema_org",
      "title": "Add Schema.org JSON-LD",
      "description": "Structured data helps AI agents understand the type, author, and purpose of your content.",
      "language": "html",
      "code": "<script type=\"application/ld+json\">\n{\n  \"@context\": \"https://schema.org\",\n  \"@type\": \"WebPage\",\n  \"name\": \"Zillow: Real Estate, Apartments, Mortgages & Home Values\",\n  \"description\": \"The leading real estate marketplace. Search millions of for-sale and rental listings, compare Zestimate® home values and connect with local professionals.\",\n  \"url\": \"https://www.zillow.com/\",\n  \"inLanguage\": \"en\",\n  \"isPartOf\": {\n    \"@type\": \"WebSite\",\n    \"name\": \"Zillow\"\n  }\n}\n</script>",
      "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://www.zillow.com/</loc>\n    <lastmod>2026-05-28</lastmod>\n  </url>\n</urlset>",
      "filename": "/sitemap.xml"
    },
    {
      "id": "add_article_main",
      "title": "Wrap content in <main> and <article>",
      "description": "Semantic HTML landmarks help AI agents identify the main content of your page.",
      "language": "html",
      "code": "<main>\n  <article>\n    <h1>Your Page Title</h1>\n    <p>Your content here...</p>\n  </article>\n</main>",
      "filename": "<body>"
    },
    {
      "id": "add_content_signals",
      "title": "Add Content-Signal directives",
      "description": "Content-Signal tells AI agents how they may use your content. The canonical location is robots.txt, but you can also expose it as an HTTP header from any stack.",
      "language": "txt",
      "code": "User-agent: *\nContent-Signal: search=yes, ai-input=yes, ai-train=no",
      "filename": "/robots.txt",
      "stacks": [
        {
          "id": "robots",
          "label": "robots.txt",
          "language": "txt",
          "filename": "/robots.txt",
          "code": "User-agent: *\nContent-Signal: search=yes, ai-input=yes, ai-train=no"
        },
        {
          "id": "nginx",
          "label": "Nginx",
          "language": "nginx",
          "filename": "server block",
          "code": "# Inside your server { } block:\nadd_header Content-Signal \"search=yes, ai-input=yes, ai-train=no\" always;"
        },
        {
          "id": "apache",
          "label": "Apache",
          "language": "apache",
          "filename": ".htaccess",
          "code": "# In .htaccess (or VirtualHost):\nHeader set Content-Signal \"search=yes, ai-input=yes, ai-train=no\""
        },
        {
          "id": "wordpress",
          "label": "WordPress",
          "language": "php",
          "filename": "functions.php",
          "code": "<?php\n// In your theme's functions.php or a small mu-plugin\nadd_action('send_headers', function () {\n    header('Content-Signal: search=yes, ai-input=yes, ai-train=no');\n});\n\n// Optional: also append the directive to the dynamic robots.txt\nadd_filter('robots_txt', function ($output) {\n    return $output . \"\\nContent-Signal: search=yes, ai-input=yes, ai-train=no\\n\";\n}, 10, 1);"
        },
        {
          "id": "nextjs",
          "label": "Next.js",
          "language": "typescript",
          "filename": "middleware.ts",
          "code": "// middleware.ts (Next.js 13+ App Router or Pages Router)\nimport { NextResponse } from 'next/server';\nexport function middleware() {\n  const res = NextResponse.next();\n  res.headers.set(\n    'Content-Signal',\n    'search=yes, ai-input=yes, ai-train=no'\n  );\n  return res;\n}\nexport const config = { matcher: '/:path*' };"
        },
        {
          "id": "cloudflare",
          "label": "Cloudflare Workers",
          "language": "javascript",
          "filename": "worker.js",
          "code": "// Cloudflare Worker that proxies your origin and adds the header\nexport default {\n  async fetch(request, env, ctx) {\n    const res = await fetch(request);\n    const newRes = new Response(res.body, res);\n    newRes.headers.set(\n      'Content-Signal',\n      'search=yes, ai-input=yes, ai-train=no'\n    );\n    return newRes;\n  },\n};"
        },
        {
          "id": "express",
          "label": "Express / Fastify",
          "language": "javascript",
          "filename": "server.js",
          "code": "// Express\napp.use((req, res, next) => {\n  res.setHeader('Content-Signal', 'search=yes, ai-input=yes, ai-train=no');\n  next();\n});\n\n// Fastify\nfastify.addHook('onSend', (request, reply, payload, done) => {\n  reply.header('Content-Signal', 'search=yes, ai-input=yes, ai-train=no');\n  done();\n});"
        }
      ]
    },
    {
      "id": "add_markdown_negotiation",
      "title": "Support Markdown for Agents",
      "description": "Let AI agents request a clean Markdown version of any page via content negotiation, .md alternate URLs, link tags or Link headers.",
      "language": "html",
      "code": "<!-- Mechanism 3: link tag advertising the .md alternate -->\n<link rel=\"alternate\" type=\"text/markdown\" href=\"/page.md\">",
      "filename": "<head>",
      "stacks": [
        {
          "id": "html",
          "label": "HTML <head>",
          "language": "html",
          "filename": "<head>",
          "code": "<!-- Mechanism 3: link tag advertising the .md alternate -->\n<link rel=\"alternate\" type=\"text/markdown\" href=\"/page.md\">"
        },
        {
          "id": "express",
          "label": "Express",
          "language": "javascript",
          "filename": "server.js",
          "code": "// Mechanisms 1 + 4: content negotiation + Link header\napp.get('/page', (req, res) => {\n  res.setHeader('Vary', 'Accept');\n  res.setHeader('Link', '</page.md>; rel=\"alternate\"; type=\"text/markdown\"');\n  if ((req.headers.accept || '').includes('text/markdown')) {\n    res.type('text/markdown; charset=utf-8');\n    return res.send(renderMarkdown('page'));\n  }\n  res.render('page');\n});"
        },
        {
          "id": "fastify",
          "label": "Fastify",
          "language": "javascript",
          "filename": "server.js",
          "code": "// Mechanisms 1 + 4: content negotiation + Link header\nfastify.get('/page', async (req, reply) => {\n  reply.header('Vary', 'Accept');\n  reply.header('Link', '</page.md>; rel=\"alternate\"; type=\"text/markdown\"');\n  if ((req.headers.accept || '').includes('text/markdown')) {\n    return reply.type('text/markdown; charset=utf-8').send(renderMarkdown('page'));\n  }\n  return reply.view('/page.ejs');\n});"
        },
        {
          "id": "nextjs",
          "label": "Next.js",
          "language": "typescript",
          "filename": "app/page/route.ts",
          "code": "// Next.js App Router — Route Handler returning Markdown\nimport { NextRequest } from 'next/server';\nimport { renderMarkdown } from '@/lib/md';\nexport async function GET(req: NextRequest) {\n  const accept = req.headers.get('accept') || '';\n  if (accept.includes('text/markdown')) {\n    return new Response(await renderMarkdown('page'), {\n      headers: {\n        'Content-Type': 'text/markdown; charset=utf-8',\n        'Vary': 'Accept',\n      },\n    });\n  }\n  // Fall through to the page component\n  return new Response(null, { status: 404 });\n}"
        },
        {
          "id": "wordpress",
          "label": "WordPress",
          "language": "php",
          "filename": "functions.php",
          "code": "<?php\n// Mechanism 1: respond to Accept: text/markdown on the same URL\nadd_action('template_redirect', function () {\n    if (!is_singular()) return;\n    $accept = $_SERVER['HTTP_ACCEPT'] ?? '';\n    if (strpos($accept, 'text/markdown') === false) return;\n    header('Content-Type: text/markdown; charset=utf-8');\n    header('Vary: Accept');\n    $post = get_queried_object();\n    echo \"# \" . get_the_title($post) . \"\\n\\n\";\n    echo wp_strip_all_tags(apply_filters('the_content', $post->post_content));\n    exit;\n});"
        },
        {
          "id": "static",
          "label": "Hugo / Jekyll / Astro",
          "language": "txt",
          "filename": "static/page.md",
          "code": "# Mechanism 2: serve .md alongside .html\n# Hugo: place page.md in /static/ — built unchanged\n# Jekyll: drop page.md in /assets/ — copied as-is\n# Astro: src/pages/page.md.ts that exports a GET returning markdown\n\n# Then advertise with mechanism 3 in <head>:\n#   <link rel=\"alternate\" type=\"text/markdown\" href=\"/page.md\">"
        }
      ]
    }
  ]
}

APIを使用してプログラムで取得できます(近日公開)

このJSONは内部使用向けです — MarkdownやllMs.txtファイルとは異なり、サイトにアップロードするものではありません。スコアの経時変化を追跡するための基準値として保存するか、開発チームと共有するか、CI/CDパイプラインに統合してください。

結果を共有

Twitter LinkedIn

バッジを埋め込む

このバッジをサイトに追加してください。AI対応スコアが変わると自動的に更新されます。

AgentReady.md score for www.zillow.com
Script 推奨
<script src="https://agentready.md/badge.js" data-id="842326bb-3d3a-4a3f-87f9-09002d1a9c45" data-domain="www.zillow.com"></script>
Markdown
[![AgentReady.md score for www.zillow.com](https://agentready.md/badge/www.zillow.com.svg)](https://agentready.md/ja/r/842326bb-3d3a-4a3f-87f9-09002d1a9c45)

近日公開: ドメイン全体分析

ドメイン全体をクロールし、llms.txtを生成し、AI対応スコアを経時的にモニタリング。ウェイトリストに登録して通知を受け取りましょう。

リストに登録されました!サービス開始時にお知らせします。