List action endpoints
GET/v1/actions
Returns a flat directory of every action endpoint, grouped by category (lending, loop, swap, allocate). Useful for client-side discovery and link generation.
Plain-text reference — GET /v1/actions
Response 200
| Field | Type | Description |
|---|---|---|
success | True | |
data | object | Informational payload. null when the endpoint only builds calldata. |
actions | null |
Example response
{
"success": true,
"data": {}
}
Responses
- 200
- 429
- 500
- 502
Endpoint listing
Rate limited. Unauthenticated callers share a per-IP budget; send an x-api-key header to lift it. Retry with exponential backoff.
Unexpected server error. Safe to retry with backoff.
An upstream data source or protocol origin failed (error.code is ORIGIN_FAILED). error.details carries the per-origin status. This is also what a missing or malformed required parameter currently returns, rather than a 400.