GET
/
get-transaction-status
Check Transaction Status
curl --request GET \
  --url https://api.sandbox.brickken.com/get-transaction-status \
  --header 'x-api-key: <api-key>'
{
  "status": "pending",
  "details": {}
}
Retrieves the status of a transaction.

Query Parameters

  • hash (required): Transaction hash

Example

curl --request GET \
  --url 'https://api.sandbox.brickken.com/get-transaction-status?hash=0x46f7114878c49ad5af0f1e6f0a2ce9c700c1fdf36455fd956b20f492ee813e80' \
  --header 'x-api-key: YOUR_API_KEY'

Response

{
  "status": "success",
  "txHash": "0x1234567890abcdef...",
  "blockNumber": 12345678,
  "gasUsed": "150000"
}

Authorizations

x-api-key
string
header
required

Query Parameters

hash
string
required

The hash of the transaction.

Response

200 - application/json

Successful response

status
enum<string>

Transaction status.

Available options:
pending,
success,
rejected
details
object

Additional details about the transaction status.