# Listing crypto deposits

<mark style="color:green;">`GET`</mark> `/api/public/v1/transactions/coin_deposits`

This endpoint returns a list of all crypto deposit transactions received.

**Headers**

| Name          | Value                      |
| ------------- | -------------------------- |
| Content-Type  | `application/vnd.api+json` |
| Authorization | `Bearer <api_key>`         |

**URL Parameters**

<table><thead><tr><th width="183">Name</th><th width="92">Type</th><th>Description</th></tr></thead><tbody><tr><td>order</td><td>string</td><td>Order in which the list of transactions should be returned. Can be <code>created_at</code>.</td></tr><tr><td>order_type</td><td>string</td><td>Order type. Can be either <code>asc</code> or <code>desc</code>.</td></tr><tr><td>per_page</td><td>number</td><td>Number of transactions per page to return.</td></tr><tr><td>page</td><td>number</td><td>Page for which you want to return transactions.</td></tr><tr><td>created_at_from</td><td>string</td><td>Date and time filter. Supports timestamps in ISO 8601 format, e.g. <code>2024-06-18T15:49:02.031Z</code>.</td></tr><tr><td>created_at_to</td><td>string</td><td>Date and time filter. Supports timestamps in ISO 8601 format, e.g. <code>2024-06-18T15:49:02.031Z</code>.</td></tr></tbody></table>

**Response**

{% tabs %}
{% tab title="HTTP 200" %}

```json
{
  "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"
      },
      "relationships": {
        "network": {
          "meta": {
            "included": false
          }
        },
        "address": {
          "meta": {
            "included": false
          }
        },
        "author": {
          "meta": {
            "included": false
          }
        }
      }
    }
  ],
  "meta": {
    "page": 1,
    "per_page": 10,
    "total": 1
  },
  "jsonapi": {
    "version": "1.0"
  }
}
```

{% endtab %}
{% endtabs %}

**Response Body**

<table><thead><tr><th>Name</th><th width="99">Type</th><th>Description</th></tr></thead><tbody><tr><td>data.id</td><td>string</td><td>Account transaction ID.</td></tr><tr><td>data.type</td><td>string</td><td>Entity type returned. Always <code>transactions</code>.</td></tr><tr><td>data.attributes</td><td>object</td><td>A set of account transaction attributes.</td></tr><tr><td>data.attributes.createdAt</td><td>string</td><td>Account transaction creation timestamp in UTC+0. Refer to the <a href="../api-basics/date-and-time-format">Date and time format</a> page.</td></tr><tr><td>data.attributes.simplifiedState</td><td>string</td><td>Account transaction status. Can be one of: <code>pending</code>, <code>processing</code>, <code>completed</code>, <code>on_hold</code>, <code>rejected</code>, <code>cancelled</code>.</td></tr><tr><td>data.attributes.transactionType</td><td>string</td><td>Account transaction type. Can only be <code>CoinTransaction</code>.</td></tr><tr><td>data.attributes.amount</td><td>string</td><td>Account transaction amount.</td></tr><tr><td>data.attributes.currency</td><td>string</td><td>Account transaction currency.</td></tr><tr><td>data.attributes.balance</td><td>string</td><td>This is what your account balance was when Txn processed the transaction.</td></tr><tr><td>data.attributes.reference</td><td>string</td><td>Account transaction reference.</td></tr><tr><td>data.attributes.accountId</td><td>string</td><td>Account ID which the transaction belongs to.</td></tr><tr><td>data.relationships</td><td>object</td><td>Additional data on the transaction relationship.</td></tr><tr><td>included[].id</td><td>string</td><td>Transaction ID.</td></tr><tr><td>included[].type</td><td>string</td><td>Entity type returned. Always <code>coinTransactions</code>.</td></tr><tr><td>included[].attributes</td><td>object</td><td>A set of crypto transaction attributes.</td></tr><tr><td>included[].attributes.txHash</td><td>string</td><td>Crypto transaction hash.</td></tr><tr><td>included[].attributes.currencyCode</td><td>string</td><td>Crypto transaction currency.</td></tr><tr><td>included[].attributes.createdAt</td><td>string</td><td>Crypto transaction creation timestamp in UTC+0. Refer to the <a href="../api-basics/date-and-time-format">Date and time format</a> page.</td></tr><tr><td>included[].attributes.state</td><td>string</td><td>Crypto transaction state used by txn internally. Please omit it and use <code>data.attributes.simplifiedState</code> in your implementation.</td></tr><tr><td>included[].attributes.amount</td><td>string</td><td>Crypto transaction amount.</td></tr><tr><td>included[].attributes.accountId</td><td>string</td><td>Account ID which the crypto transaction belongs to.</td></tr><tr><td>included[].attributes.reference</td><td>string</td><td>Transaction reference.</td></tr><tr><td>included[].attributes.simplifiedState</td><td>string</td><td>Crypto transaction status. Can be one of: <code>pending</code>, <code>processing</code>, <code>completed</code>, <code>on_hold</code>, <code>rejected</code>, <code>cancelled</code>.</td></tr><tr><td>meta</td><td>object</td><td>Object that contains the pagination data.</td></tr><tr><td>meta.page</td><td>string</td><td>Current page number you are on.</td></tr><tr><td>meta.per_page</td><td>string</td><td>Number of transactions per page.</td></tr><tr><td>meta.total</td><td>number</td><td>Total number of pages returned.</td></tr></tbody></table>
