# King David Consulting LLC > Agentic AI delivery and Azure migration and modernization consulting for Microsoft and .NET teams. ## Endpoints - `GET /` - Homepage with services overview and readiness journey. - `GET /services` - Service descriptions mapped to assess, prioritize, and pilot. - `GET /case-studies` - Proof patterns and implementation examples. - `GET /projects` - Public project portfolio and repositories. - `GET /clients` - Client and ecosystem trust signals. - `GET /about` - Practice overview and engagement context. - `GET /contact` - Contact page with intake instructions and embedded Microsoft Form. - `GET /api` - Static API namespace index routed to `/api/index.json`. - `GET /api/index.json` - Machine-readable API namespace index. - `GET /api/status.json` - Machine-readable static status document. - `GET /llms.txt` - Agent operating guidance for this site. - `GET /llms-full.txt` - Full text companion for non-browsing ingestion. ## Authentication No authentication is required for public site routes. The `/api/*` paths are static, read-only documents and do not support write operations. The contact intake experience is handled through an embedded Microsoft Form on `/contact` and may use Microsoft-hosted form access controls. ## Examples Read the site guidance as markdown: ```bash curl -H "Accept: text/markdown" https://kingdavidconsulting.com/llms.txt ``` Open the services page: ```bash curl https://kingdavidconsulting.com/services ``` Check the full text companion: ```bash curl -H "Accept: text/plain" https://kingdavidconsulting.com/llms-full.txt ```