Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.dzap.io/llms.txt

Use this file to discover all available pages before exploring further.

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

ResourceURLUse
API introduction/api/introductionHuman-readable REST API overview
Authentication/api/authentication and /auth.mdAPI key and agent credential guidance
Rate limits/api/rate-limitsPer-IP and per-key limits
Error codes/api/error-codesStable error model and recovery guidance
OpenAPI YAML/openapi.yamlAgent and SDK contract
OpenAPI mirror/api/openapi.yamlPredictable API-scoped OpenAPI URL
Markdown API guide/api.mdCompact machine-readable API guide
LLM index/llms.txtNavigable docs index
Full LLM context/llms-full.txtFull documentation corpus
API LLM index/api/llms.txtScoped API context
Developer LLM index/developers/llms.txtScoped developer context
MCP server card/.well-known/mcp/server-card.jsonTool preview and runtime endpoint
Agent card/.well-known/agent-card.jsonA2A-style capability card
Agent discovery/.well-known/agent.jsonGeneral agent discovery document
Agent skills index/.well-known/agent-skills/index.jsonAgent Skills v0.2.0 discovery
Repository agent instructions/AGENTS.mdCoding-agent rules for the public docs repository
Skills.sh skill file/SKILL.mdSelf-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 31, 2026