# Example Corporation > This site is powered by **Sazanami**, a Next.js + Markdown corporate-site starter with a build-time knowledge index and a read-only search API for agents and internal tools. ## What this site exposes - **Human-readable pages**: localized Markdown content for company, leadership, products, solutions, contact, legal, news, and financial pages. - **Machine-readable knowledge index**: one JSON file containing page/news/financial entries with titles, descriptions, paths, source kinds, and normalized text. - **Focused retrieval API**: a POST endpoint that returns ranked snippets for a query without requiring crawlers or a hosted search service. - **Specification document**: a Markdown spec describing the index schema and API response shape. ## Start here (human-readable pages) - [Home](https://next-markdown-agent-search-starter.vercel.app/): Site home. - [Company](https://next-markdown-agent-search-starter.vercel.app/company/): Company profile placeholder. - [Leadership](https://next-markdown-agent-search-starter.vercel.app/leadership/): Leadership placeholder. - [Products](https://next-markdown-agent-search-starter.vercel.app/products/): Product overview placeholder. - [Solutions](https://next-markdown-agent-search-starter.vercel.app/solutions/): Solutions overview placeholder. - [News](https://next-markdown-agent-search-starter.vercel.app/news/): News articles. - [English mirror](https://next-markdown-agent-search-starter.vercel.app/en/): Same structure under `/en/`. ## Knowledge bundle (recommended for LLMs) **Best first step:** download the build-time index. It is structured JSON with public page, news article, and financial summary content. - [**agent-search-index.json**](https://next-markdown-agent-search-starter.vercel.app/agent-search-index.json): GET, no authentication. Use this when you need broad site context in one request. - [**SPEC.md**](https://next-markdown-agent-search-starter.vercel.app/SPEC.md): Schema for the index (`version`, `generatedAt`, `locales`, entry fields, `sourceKind`, Search API shape). Read this before parsing the JSON. - [**Search API**](https://next-markdown-agent-search-starter.vercel.app/api/agent/search): `POST` JSON `{ "q": string, "locale"?: "ja"|"en", "limit"?: 1-50 }` → ranked `hits` with snippets. Production requires `AGENT_SEARCH_API_KEY`. ## Site map - [sitemap.xml](https://next-markdown-agent-search-starter.vercel.app/sitemap.xml): Canonical URLs including discovery resources. - [robots.txt](https://next-markdown-agent-search-starter.vercel.app/robots.txt): Crawler rules. ## Note Replace the placeholder content, brand assets, and legal text before using this starter in production.