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

Listing crypto deposits

GET /api/public/v1/transactions/coin_deposits

Returns your crypto deposit transactions. Each entry pairs the account transaction (in data) with its on-chain details, network, and receiving address (in included[]). Results are paginated, filterable by date, and orderable.

Headers

Name
Value

Content-Type

application/vnd.api+json

Authorization

Bearer <api_key>

URL Parameters

Name
Type
Description

order

string

Order in which the list of transactions should be returned. Can be created_at.

order_type

string

Order type. Can be either asc or desc.

per_page

number

Number of transactions per page to return.

page

number

Page for which you want to return transactions.

created_at_from

string

Date and time filter. Supports timestamps in ISO 8601 format, e.g. 2024-06-18T15:49:02.031Z.

created_at_to

string

Date and time filter. Supports timestamps in ISO 8601 format, e.g. 2024-06-18T15:49:02.031Z.

Response

{
  "data": [
    {
      "id": "d4c51c64-706f-4ede-8a2c-a5cca27e03bb",
      "type": "transactions",
      "attributes": {
        "createdAt": "2026-04-01T11:12:51.988Z",
        "simplifiedState": "completed",
        "transactionType": "CoinTransaction",
        "amount": "5.000000",
        "currency": "USDT",
        "balance": "10637424.361911",
        "reference": null,
        "accountId": "8140e530-4cd3-47e0-b813-9c473e9a2ea3"
      },
      "relationships": {
        "account": {
          "meta": {
            "included": false
          }
        },
        "transactionDetails": {
          "data": {
            "type": "coinTransactions",
            "id": "d4c51c64-706f-4ede-8a2c-a5cca27e03bb"
          }
        },
        "author": {
          "meta": {
            "included": false
          }
        }
      }
    }
  ],
  "included": [
    {
      "id": "d4c51c64-706f-4ede-8a2c-a5cca27e03bb",
      "type": "coinTransactions",
      "attributes": {
        "txHash": "d47aad66318125d7fb5ce429fef66204f0797c7c71f1a6277ab0a53c66f1fe51",
        "currencyCode": "USDT",
        "createdAt": "2026-04-01T11:12:51.952Z",
        "state": "completed",
        "amount": "5.000000",
        "accountId": "8140e530-4cd3-47e0-b813-9c473e9a2ea3",
        "reference": null,
        "simplifiedState": "completed",
        "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": {
    "page": 1,
    "per_page": 10,
    "total": 1
  },
  "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.

meta.page

number

Current page number.

meta.per_page

number

Page size used for the response.

meta.total

number

Total number of crypto deposits matching the query.

Last updated