id for the created wallet action. Your application can use this ID to poll for the action’s current status.
Usage
To get the status of a wallet action, make aGET request to
Response
The unique identifier for the wallet action.
The ID of the wallet that initiated the action.
The type of the wallet action.
The current status of the action.
| Status | Description |
|---|---|
pending | At least one step is still in progress. |
succeeded | All steps completed successfully. |
rejected | Failed before any onchain effects. Safe to retry. |
failed | Something went wrong and there may be onchain effects. Inspect steps for details. |
The steps of the wallet action. Only returned when
?include=steps is passed as a query
parameter. Each step includes its own status, chain identifier, and transaction hash.swap or transfer. See the API reference for the full response schema.
Including step details
By default, the response only returns the overall state of the action to provide visibility into whether it succeeded or failed. For more granular information, such as transaction hashes, chain IDs, and per-step statuses, pass?include=steps as a query parameter.
Polling recommendations
Wallet actions typically complete within a few seconds, but can take longer depending on network conditions. Poll infrequently and stop once thestatus reaches a terminal value (succeeded, rejected, or failed).

