Endpoints
| Method | Endpoint | Description |
|---|---|---|
GET | /actions/:actionId | Get full action with all intents |
GET | /actions/:actionId/intents/:intentIndex | Get specific intent |
GET | /actions/:actionId/intents/:intentIndex/steps/:stepIndex | Get specific step |
GET /actions/:actionId
Retrieve a complete action including all intents and their chain authorization steps.Path Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
actionId | string | Yes | Action ID (e.g., act_abc123...) |
Response (200)
GET /actions/:actionId/intents/:intentIndex
Retrieve a specific intent within an action.Path Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
actionId | string | Yes | Action ID |
intentIndex | number | Yes | Intent index (0-based) |
Response (200)
GET /actions/:actionId/intents/:intentIndex/steps/:stepIndex
Retrieve status of a specific chain authorization step.Path Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
actionId | string | Yes | Action ID |
intentIndex | number | Yes | Intent index (0-based) |
stepIndex | number | Yes | Step index (0-based) |
Response (200)
Step Status Values
| Status | Description |
|---|---|
created | Step created, awaiting execution |
registered | Hash registered (non-7702:on-demand only) |
executing | Transaction sent, awaiting confirmation |
success | Step completed successfully |
reverted | Transaction reverted on-chain |
error | Execution error occurred |
