Relayer is organized into Kits. Each Kit covers a distinct domain and exposes a set of REST endpoints under theDocumentation Index
Fetch the complete documentation index at: https://docs.relayer.fi/llms.txt
Use this file to discover all available pages before exploring further.
/v1 prefix. This page shows how the Kits relate to each other and to your application.
Kit Structure
Kit Responsibilities
| Kit | Prefix | What It Does |
|---|---|---|
| Signing | /v1/signing, /v1/transactions | Self-custodial wallets, transaction prepare/confirm, passkey signing, approval policies |
| Agent Kit | /v1/agents | Budget-enforced AI agents that can sign transactions and pay for x402 resources |
| Payout | /v1/payout, /v1/orders | Fiat on/off-ramp, recipient management, virtual accounts, payment settlement |
| Widget Kit | /v1/action/builders, /v1/action/execute, npm packages | Embeddable widgets for canonical protocols (swap, transfer, bridge) |
Request Flow
Every API request follows the same pattern:Authentication Model
Every request authenticates with an API key in theAuthorization header:
Authorization: Bearer <jwt>) for browser-side callers from the Relayer dashboard, and the Agent Kit accepts an HMAC-signed X-Agent-Auth header for runtime calls from the agent SDK. See Authentication for the full matrix.
Environments
| Environment | Base URL | Use |
|---|---|---|
| Sandbox | https://testnet.relayer.fi/v1 | Development and testing |
| Production | https://api.relayer.fi/v1 | Live operations |