v1

latestOpenAPI 3.0.02026-07-2613985.6 KB
Transactions

Fetch transaction metadata

Get transaction details by id, foreign_id, or txid. Include only one of these parameters in your request.

get/transactions/info

Headers

X-Processing-Signaturestring required

Hex-encoded HMAC-SHA512 signature of the request body, generated using your secret key.

Request body

OR
OR

Example request

{
  "id": 717535
}

Response

OK

idinteger required
foreign_idstring

This transaction's unique identifier in your system.

end_user_referencestring

End user reference. Present only when KYC data was provided.

typestring required

Transaction type.

errorstring nullable

Error message. Null or empty string for successful transactions.

status'cancelled' | 'confirmed' | 'declined' | 'not_confirmed' | 'pending' required

Transaction status. Note: internal statuses are mapped before returning:

  • processing and verifying are returned as not_confirmed
  • error is returned as cancelled
  • rejected is returned as cancelled
additional_detailsobject nullable

Additional transaction details. Present only when available.

Example response

{
  "id": 717535,
  "crypto_address": {
    "id": 176,
    "currency": "BTC",
    "convert_to": "EUR",
    "address": "tb1qqepjlefdvrtyu6teqndww7v86hkz269z0ewj5q"
  }
}