Get Operation
Operations
Get Operation
GET /v1/operations/:id — Check operation status
GET
Get Operation
Documentation Index
Fetch the complete documentation index at: https://docs.rebelfi.io/docs/llms.txt
Use this file to discover all available pages before exploring further.
Endpoint:
GET https://api.rebelfi.io/v1/operations/:idPath Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
id | number | Yes | Operation ID |
Example Request
Example Response (Awaiting Signature)
Example Response (Confirmed)
Example Response (Failed)
Operation Status Values
| Status | Description |
|---|---|
PENDING | Operation created, building transactions |
AWAITING_SIGNATURE | Unsigned transaction ready for signing |
SUBMITTED | Transaction submitted, waiting for confirmation |
CONFIRMED | Successfully confirmed on-chain |
FAILED | Transaction failed or operation was cancelled/timed out |
Cancelled and timed-out operations are reported as
failed when retrieved via GET. The cancel endpoint returns "status": "CANCELLED" in its own response.Transaction Failure Codes
| Code | Description |
|---|---|
REVERTED | Smart contract execution reverted |
OUT_OF_GAS | Transaction ran out of gas |
TIMEOUT | Not included in block within timeout |
NONCE_TOO_LOW | Nonce already used |
INSUFFICIENT_FUNDS | Not enough SOL for gas |
REPLACED | Replaced by another transaction |
DROPPED | Dropped from mempool |
UNKNOWN | Unknown failure |
Errors
| Code | Description |
|---|---|
OPERATION_NOT_FOUND | Operation ID doesn’t exist |