Retrieves a specific transaction by its ID.

GET
/api/v1/relayers/{relayer_id}/transactions/{transaction_id}
AuthorizationBearer <token>

In: header

Path Parameters

relayer_idstring

The unique identifier of the relayer

transaction_idstring

The unique identifier of the transaction

Response Body

curl -X GET "https://loading/api/v1/relayers/string/transactions/string"
{
  "data": {
    "confirmed_at": "string",
    "created_at": "string",
    "data": "string",
    "from": "string",
    "gas_limit": 0,
    "gas_price": "string",
    "hash": "string",
    "id": "string",
    "max_fee_per_gas": "string",
    "max_priority_fee_per_gas": "string",
    "nonce": 0,
    "relayer_id": "string",
    "sent_at": "string",
    "signature": {},
    "speed": {},
    "status": "canceled",
    "status_reason": "string",
    "to": "string",
    "value": "string"
  },
  "error": "string",
  "pagination": {
    "current_page": 0,
    "per_page": 0,
    "total_items": 0
  },
  "success": true
}
{
  "data": null,
  "message": "Bad Request",
  "success": false
}
{
  "data": null,
  "message": "Unauthorized",
  "success": false
}
{
  "data": null,
  "message": "Not Found",
  "success": false
}
{
  "data": null,
  "message": "Too Many Requests",
  "success": false
}
{
  "data": null,
  "message": "Internal Server Error",
  "success": false
}