> For the complete documentation index, see [llms.txt](https://docs.txn.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.txn.io/accounts/listing-account-addresses.md).

# Listing account addresses

<mark style="color:green;">`GET`</mark> `/api/public/v1/accounts/:id/addresses`

Returns the receiving addresses on the given account, including the address `value` once it has been generated. Results are paginated.

**Headers**

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

**Path Parameters**

| Name | Type   | Description |
| ---- | ------ | ----------- |
| id   | string | Account ID. |

**URL Parameters**

| Name        | Type   | Description                                                                   |
| ----------- | ------ | ----------------------------------------------------------------------------- |
| order       | string | Order in which the list of addresses should be returned. Can be `created_at`. |
| order\_type | string | Order type. Can be either `asc` or `desc`.                                    |
| page        | number | Page for which you want to return addresses.                                  |
| per\_page   | number | Number of addresses per page to return.                                       |

**Response**

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

```json
{
  "data": [
    {
      "id": "138928d2-769d-478f-9508-90b7e4f8942a",
      "type": "addresses",
      "attributes": {
        "label": "Apr 11",
        "value": "TUbHdtAyfeiWTJPzF12gcBnpLtmLo3qgkS",
        "createdAt": "2025-04-11T07:19:09.729Z"
      },
      "relationships": {
        "account": {
          "meta": {
            "included": false
          }
        },
        "network": {
          "data": {
            "type": "network",
            "id": "8ededca3-a1cd-4b46-8c3a-14915f706ab2"
          }
        }
      }
    }
  ],
  "included": [
    {
      "id": "8ededca3-a1cd-4b46-8c3a-14915f706ab2",
      "type": "network",
      "attributes": {
        "currencyCode": "USDT",
        "name": "Tron (TRC20)",
        "code": "ttrx:usdt"
      }
    }
  ],
  "meta": {
    "page": 1,
    "per_page": 1,
    "total": 22
  },
  "jsonapi": {
    "version": "1.0"
  }
}
```

{% endtab %}
{% endtabs %}

**Response Body**

| Name                                 | Type   | Description                                                                                                                                    |
| ------------------------------------ | ------ | ---------------------------------------------------------------------------------------------------------------------------------------------- |
| `data[].id`                          | string | Address ID.                                                                                                                                    |
| `data[].type`                        | string | Entity type returned. Always `addresses`.                                                                                                      |
| `data[].attributes.label`            | string | Address label, as set at creation.                                                                                                             |
| `data[].attributes.value`            | string | The address string. `null` while the address is still being generated — see [Creating account address](/accounts/creating-account-address.md). |
| `data[].attributes.createdAt`        | string | ISO 8601 timestamp of when the address was created.                                                                                            |
| `data[].relationships.network`       | object | The network the address belongs to. The full network entity is returned in `included[]`.                                                       |
| `included[].id`                      | string | Network ID.                                                                                                                                    |
| `included[].type`                    | string | Entity type. Always `network`.                                                                                                                 |
| `included[].attributes.currencyCode` | string | Network currency code.                                                                                                                         |
| `included[].attributes.name`         | string | Human-readable network name, e.g. `Tron (TRC20)`.                                                                                              |
| `included[].attributes.code`         | string | Network code, e.g. `ttrx:usdt`. See [Supported currencies](/api-basics/supported-currencies.md).                                               |
| `meta.page`                          | number | Current page number.                                                                                                                           |
| `meta.per_page`                      | number | Page size used for the response.                                                                                                               |
| `meta.total`                         | number | Total number of addresses on the account.                                                                                                      |


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## 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, and the optional `goal` query parameter:

```
GET https://docs.txn.io/accounts/listing-account-addresses.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

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.
