Connecting services and preparing your dashboard.
Zephex documentation is available in clean markdown format for AI agents, LLMs, and developer tools that prefer structured text over HTML.
HTML version: https://zephex.dev/docs/api-referenceMarkdown version: https://zephex.dev/docs/api-reference.md HTML version: https://zephex.dev/docs/quickstartMarkdown version: https://zephex.dev/docs/quickstart.mdThe markdown version contains the same content without navigation, sidebars, footers, or JavaScript noise.
Site index: https://zephex.dev/llms.txtAPI reference: https://zephex.dev/docs/api-reference.mdQuickstart: https://zephex.dev/docs/quickstart.mdAll tools: https://zephex.dev/docs/tools.mdPOST https://zephex.dev/mcpAuthorization: Bearer YOUR_KEYtools/list, tools/call// app/docs/[...slug]/route.tsexport async function GET( request: Request, { params }: { params: { slug: string[] } }) { const url = new URL(request.url) if (url.pathname.endsWith('.md')) { const pagePath = url.pathname.replace('.md', '') const markdown = await getPageMarkdown(pagePath) return new Response(markdown, { headers: { 'Content-Type': 'text/markdown; charset=utf-8', 'Cache-Control': 'public, max-age=3600', } }) } // Normal page rendering}Every page under /docs/* should return markdown when .md is appended to the URL.