Valyd for AI agents & copilots
Machine-readable specs, context files, and tooling so agents can discover, understand, and call the Valyd APIs without scraping the docs site.
Quick fetch
# Machine-readable docs index
curl -sL https://docs.valyd.work/llms.txt
# Full corpus — inject into a model context window
curl -sL https://docs.valyd.work/llms-full.txt
# OpenAPI specs
curl -sL https://docs.valyd.work/openapi/valyd-id.json
curl -sL https://docs.valyd.work/openapi/valyd-verify.jsonResources
llms.txt — Standard
Machine-readable docs index following the llms.txt spec. One fetch gives an agent the full hierarchy, base URLs, credential rules, and links to every page as clean Markdown.
curl -sL https://docs.valyd.work/llms.txtllms-full.txt
Single-file corpus — every docs page concatenated and delimited. Inject the whole thing into a model context window for offline reasoning without additional fetches.
curl -sL https://docs.valyd.work/llms-full.txtValyd ID OpenAPI — OpenAPI 3.1
Full OpenAPI 3.1 spec for TPSSO and OIDC endpoints — schemas, auth, error envelopes, and response examples. Use for SDK codegen, Copilot plugins, and endpoint discovery.
curl -sL https://docs.valyd.work/openapi/valyd-id.jsonBrowse in docs · Download JSON
Verification APIs OpenAPI — OpenAPI 3.1
Full OpenAPI 3.1 spec for Sessions, Core checks, Credentials, and Workflows — including the HMAC-SHA256 webhook schema.
curl -sL https://docs.valyd.work/openapi/valyd-verify.jsonBrowse in docs · Download JSON
MCP server — Preview
Connect Valyd to any MCP client (Cursor, Claude Desktop, VS Code Copilot) for real-time API execution — authenticate users, run KYC checks, and retrieve verification results without leaving your editor.
{
"mcpServers": {
"valyd": {
"command": "npx",
"args": ["-y", "@valyd/mcp-server"],
"env": {
"VALYD_CLIENT_ID": "<your-client-id>",
"VALYD_CLIENT_SECRET": "<your-client-secret>",
"VALYD_API_KEY": "<your-verify-api-key>"
}
}
}
}Postman collection
Importable Postman collection of Valyd ID API requests. Import into Postman or use with Newman for scripted testing.
curl -sL https://docs.valyd.work/valyd-postman-collection.jsonNotes for AI agents
- Fetch
llms.txtfirst — it lists every page as a Markdown URL. Fetch individual pages on demand rather than loading the full corpus unless you need everything. - Credentials cannot be created via API. Pause and ask a human to supply
client_id,client_secret, andVALYD_API_KEYbefore making auth calls. - Token exchange and webhook signature verification must run server-side — never expose
client_secretto a browser. - Prefer the clean
.mdURLs listed inllms.txtover scraping the HTML pages — each one is a self-contained static copy of the corresponding docs page.
← Valyd ID docs · ← Verification APIs docs · ← Home
Questions? support@valyd.id