Skip to main content

Get Transaction Details

GET 

/api/v2/transactions/:id

Fetches detailed information for a specific transaction by its ID. This includes comprehensive data such as transaction type, amount, currency, status, and depending on the transaction, detailed specifics such as crypto address or bank card details.

Request

Path Parameters

    id Idrequired

    The unique identifier of the transaction.

Responses

Successful Response

Schema
    id uuidrequired

    The unique identifier of the transaction.

    userId uuidrequired

    The unique identifier of the user who initiated the transaction.

    createdAt date-timerequired

    Date and time when the transaction was created.

    type object

    An enumeration.

    amount Amountrequired

    The amount of the transaction, represented as a precise decimal value.

    currencyCode Currencycoderequired

    The currency code representing the currency of the transaction, such as USD, EUR, USDT, etc.

    status object

    An enumeration.

    direction object

    An enumeration.

    details object

    The direction of the transaction amount, indicating whether it's incoming, outgoing, or neutral.

    anyOf
    type object

    An enumeration.

    address Addressrequired

    The crypto address to which the top-up was made.

    transactionHash Transactionhashrequired

    The transaction hash of the top-up.

    currencyCode Currencycoderequired

    The currency code of the cryptocurrency used in the transaction.

    statusChangeReason Statuschangereasonrequired

    The reason for any status changes in the transaction.

Loading...