# 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",
        "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"
  }
}
```

{% 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="/pages/H7xWDJMZukOei8CS8tUW">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="/pages/H7xWDJMZukOei8CS8tUW">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>included[].attributes.sourceAddresses</td><td>array</td><td>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.</td></tr><tr><td>included[].type(network).attributes.name</td><td>string</td><td>Network name. E.g. <code>Tron (TRC20)</code>.</td></tr><tr><td>included[].type(network).attributes.currencyCode</td><td>string</td><td>Currency code for the network.</td></tr><tr><td>included[].type(network).attributes.code</td><td>string</td><td>Network code. E.g. <code>ttrx:usdt</code>. Refer to <a href="/pages/SA7q0b6VrvXO3W09TQfS">Supported currencies</a>.</td></tr><tr><td>included[].type(addresses).attributes.label</td><td>string</td><td>Address label.</td></tr><tr><td>included[].type(addresses).attributes.value</td><td>string</td><td>The wallet address the deposit was received at.</td></tr><tr><td>included[].type(addresses).attributes.createdAt</td><td>string</td><td>Timestamp when the address was created.</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>


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.txn.io/transactions/listing-crypto-deposits.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
