For the complete documentation index, see llms.txt. This page is also available as Markdown.

Reading crypto deposit

GET /api/public/v1/transactions/coin_deposits/:id

Returns a single crypto deposit transaction by ID. The account transaction is returned in data, with its on-chain details, network, and receiving address in included[].

Headers

Name
Value

Content-Type

application/vnd.api+json

Authorization

Bearer <api_key>

Path Parameters

Name
Type
Description

id

string

Transaction ID.

Response

{
  "data": {
    "id": "41a054ab-e95d-4ebc-91e2-fdf8a7d80ba2",
    "type": "transactions",
    "attributes": {
      "createdAt": "2026-04-03T09:46:50.510Z",
      "simplifiedState": "rejected",
      "transactionType": "CoinTransaction",
      "amount": "7.700000",
      "currency": "USDT",
      "balance": "10637559.798182",
      "reference": null,
      "accountId": "8140e530-4cd3-47e0-b813-9c473e9a2ea3"
    },
    "relationships": {
      "account": {
        "meta": {
          "included": false
        }
      },
      "transactionDetails": {
        "data": {
          "type": "coinTransactions",
          "id": "41a054ab-e95d-4ebc-91e2-fdf8a7d80ba2"
        }
      },
      "author": {
        "meta": {
          "included": false
        }
      }
    }
  },
  "included": [
    {
      "id": "41a054ab-e95d-4ebc-91e2-fdf8a7d80ba2",
      "type": "coinTransactions",
      "attributes": {
        "txHash": "48cd65dd45571ff2d24684b2b2819fd0b32e20069da9e98ab8bf14ef51d4cc3f",
        "currencyCode": "USDT",
        "createdAt": "2026-04-03T09:46:50.451Z",
        "state": "rejected",
        "amount": "7.700000",
        "accountId": "8140e530-4cd3-47e0-b813-9c473e9a2ea3",
        "reference": null,
        "simplifiedState": "rejected",
        "sourceAddresses": [
          "TTbGTMwUwA3mncLP7xqCZei1ekaNSgeAJe"
        ]
      },
      "relationships": {
        "network": {
          "data": {
            "type": "network",
            "id": "8ededca3-a1cd-4b46-8c3a-14915f706ab2"
          }
        },
        "address": {
          "data": {
            "type": "addresses",
            "id": "e92d7fb6-4cc0-4814-9a2b-8830ead8e833"
          }
        },
        "author": {
          "meta": {
            "included": false
          }
        }
      }
    },
    {
      "id": "8ededca3-a1cd-4b46-8c3a-14915f706ab2",
      "type": "network",
      "attributes": {
        "currencyCode": "USDT",
        "name": "Tron (TRC20)",
        "code": "ttrx:usdt"
      }
    },
    {
      "id": "e92d7fb6-4cc0-4814-9a2b-8830ead8e833",
      "type": "addresses",
      "attributes": {
        "label": "My Wallet",
        "value": "TGRA6wC7T35dXwdGsSAevNmVJ8srGQKDeE",
        "createdAt": "2026-05-07T10:01:07.566Z"
      },
      "relationships": {
        "account": {
          "meta": {
            "included": false
          }
        },
        "network": {
          "meta": {
            "included": false
          }
        }
      }
    }
  ],
  "meta": {},
  "jsonapi": {
    "version": "1.0"
  }
}

Response Body

Name
Type
Description

data.id

string

Account transaction ID.

data.type

string

Entity type returned. Always transactions.

data.attributes

object

A set of account transaction attributes.

data.attributes.createdAt

string

Account transaction creation timestamp in UTC+0. Refer to the Date and time format page.

data.attributes.simplifiedState

string

Account transaction status. Can be one of: pending, processing, completed, on_hold, rejected, cancelled.

data.attributes.transactionType

string

Account transaction type. Can only be CoinTransaction.

data.attributes.amount

string

Account transaction amount.

data.attributes.currency

string

Account transaction currency.

data.attributes.balance

string

Account balance immediately after Txn processed this transaction.

data.attributes.reference

string

Account transaction reference.

data.attributes.accountId

string

ID of the account the transaction belongs to.

data.relationships.transactionDetails

object

Link to the on-chain deposit details, returned as a coinTransactions entity in included[].

included[].id

string

Transaction ID.

included[].type

string

Entity type returned. Always coinTransactions.

included[].attributes

object

A set of crypto transaction attributes.

included[].attributes.txHash

string

Crypto transaction hash.

included[].attributes.currencyCode

string

Crypto transaction currency.

included[].attributes.createdAt

string

Crypto transaction creation timestamp in UTC+0. Refer to the Date and time format page.

included[].attributes.state

string

Internal Txn state. Ignore this field — use data.attributes.simplifiedState in your implementation.

included[].attributes.amount

string

Crypto transaction amount.

included[].attributes.accountId

string

Account ID which the crypto transaction belongs to.

included[].attributes.reference

string

Transaction reference.

included[].attributes.simplifiedState

string

Crypto transaction status. Can be one of: pending, processing, completed, on_hold, rejected, cancelled.

included[].attributes.sourceAddresses

array

Wallet address(es) the funds were sent from. Typically a single address; may contain multiple entries when the deposit arrived via a UTXO-based network (BTC, LTC, BCH, DOGE, etc.) and the sender’s wallet combined several inputs.

included[].type(network).attributes.name

string

Network name. E.g. Tron (TRC20).

included[].type(network).attributes.currencyCode

string

Currency code for the network.

included[].type(network).attributes.code

string

Network code. E.g. ttrx:usdt. Refer to Supported currencies.

included[].type(addresses).attributes.label

string

Address label.

included[].type(addresses).attributes.value

string

The wallet address the deposit was received at.

included[].type(addresses).attributes.createdAt

string

Timestamp when the address was created.

Last updated