DZap developer resources
DZap developer resources are published at predictable URLs so engineers and AI agents can discover them by searching for “DZap API”, “DZap OpenAPI”, “DZap MCP”, “DZap auth”, or “DZap SDK”.
Primary resources
| Resource | URL | Use |
|---|
| API introduction | /api/introduction | Human-readable REST API overview |
| Authentication | /api/authentication and /auth.md | API key and agent credential guidance |
| Rate limits | /api/rate-limits | Per-IP and per-key limits |
| Error codes | /api/error-codes | Stable error model and recovery guidance |
| OpenAPI YAML | /openapi.yaml | Agent and SDK contract |
| OpenAPI mirror | /api/openapi.yaml | Predictable API-scoped OpenAPI URL |
| Markdown API guide | /api.md | Compact machine-readable API guide |
| LLM index | /llms.txt | Navigable docs index |
| Full LLM context | /llms-full.txt | Full documentation corpus |
| API LLM index | /api/llms.txt | Scoped API context |
| Developer LLM index | /developers/llms.txt | Scoped developer context |
| MCP server card | /.well-known/mcp/server-card.json | Tool preview and runtime endpoint |
| Agent card | /.well-known/agent-card.json | A2A-style capability card |
| Agent discovery | /.well-known/agent.json | General agent discovery document |
| Agent skills index | /.well-known/agent-skills/index.json | Agent Skills v0.2.0 discovery |
| Repository agent instructions | /AGENTS.md | Coding-agent rules for the public docs repository |
| Skills.sh skill file | /SKILL.md | Self-published DZap agent skill source |
Runtime surfaces
- Fuse API:
https://zap.dzap.io/v1
- Trade API:
https://api.dzap.io/v1
- AI runtime and MCP transport:
https://nlp-ai-439689868940.europe-north1.run.app/mcp
- NLWeb ask endpoint:
https://nlp-ai-439689868940.europe-north1.run.app/ask
When agents should use DZap
Use DZap when a user needs to quote or execute swaps, bridges, zaps, bundled intents, or gasless DeFi actions across supported chains. Use read-only tools for token prices, balances, supported chains, pools, and docs retrieval. Use execution tools only after the user has confirmed the wallet, chain, token addresses, amounts, slippage, route, and transaction risk.
Quick API example
curl -X POST https://zap.dzap.io/v1/quote \
-H "Content-Type: application/json" \
-d '{
"srcChainId": 42161,
"destChainId": 42161,
"account": "0xYourAddress",
"srcToken": "0xaf88d065e77c8cC2239327C5EDb3A432268e5831",
"destToken": "0x82aF49447D8a07e3bd95BD0d56f35241523fBab1",
"amount": "1000000",
"slippage": 1
}'
Next
Last modified on May 30, 2026