Skip to main content

Documentation Index

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

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

Older “agentic gateway” links map to controlled agent access for 0xArchive market data: route map, auth boundaries, data-quality gates, and a narrow execution surface instead of free-form endpoint guessing. This is not the same as wallet automation. Wallet automation is for wallet-managed signup, SIWE challenges, and managed key flows. An agentic gateway can use ordinary API keys, OpenAPI, docs, CLI, MCP Server, Skill, SDKs, REST, or WebSocket depending on the host.

Gateway Layers

LayerRoleDocs
Route mapPrevent endpoint and namespace guessingOpenAPI and Venue Coverage
ContextTell the agent how to choose routes and interpret fieldsAI Clients
Execution surfaceGive the host a safe way to call or generate callsChoose An Interface
Auth boundaryKeep keys out of prompts and checked-in configAuthentication
Data gateStop stale or incomplete data from becoming outputData Quality
Account automationUse wallet-managed access only when neededWallet Automation

Gateway Boundary Packet

Use this packet before an agent writes a script, configures a tool, or widens a market-data job.
BoundaryPublic rule
Market-data routeChoose the venue family in Venue Coverage, then use OpenAPI or the matching REST family for the exact path and parameters.
Credential handlingPut keys in the host environment or secret manager, then send REST requests with X-API-Key; do not paste keys into generated source or prompts.
Execution surfacePick one surface for the first run: REST, CLI, SDK, MCP Server, Skill, WebSocket, or OpenAPI codegen.
First requestUse one route family, one symbol, one small window, and request-ID logging before adding loops, storage, dashboards, or models.
Payment and wallet flowsUse Facilitator for x402 payment infrastructure and Wallet Automation for wallet-managed keys. Neither changes market-data route shape, schemas, or freshness checks.
Stop conditionIf venue family, symbol format, credential path, route shape, or data-quality requirement is missing, resolve that before execution.

When To Use This Pattern

Use an agentic gateway pattern when a coding agent, analyst assistant, dashboard builder, or internal automation should fetch market data but should not invent routes, run unlimited loops, or ignore freshness. The gateway is the combination of context, auth, route contract, and bounded execution. Do not use this page to claim a separate hosted agent product unless a live product surface shows it. The public docs should describe the integration pattern and point readers to the concrete surfaces that exist.

Implementation Rules

1

Pin route context

Give the agent OpenAPI plus the page matching the job, such as Venue Coverage, Data Quality, REST, or WebSocket.
2

Choose one execution surface

Use CLI for terminal jobs, MCP Server for MCP-capable hosts, Skill for reusable workflows, SDKs for application code, or REST for direct HTTP.
3

Limit the first call

Require one route family, one symbol, one small window, and request-ID logging before widening.
4

Separate wallet access

Use wallet automation only when the user explicitly needs wallet-managed keys or payment-aware account flows.

Next Step

Open Choose An Interface to choose the surface, then Coding Agents for host rules. Use Wallet Automation only for wallet-managed access workflows.
Last modified on May 18, 2026