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

# Assets

This endpoint retrieves IOU tokens owned by a given account.

Tokens can represent any type of value, including "stablecoins" backed by assets that exist outside of the ledger, purely digital tokens created specifically on the XRP Ledger, community credit, and more.

{% embed url="<https://xrpl.org/tokens.html>" %}
Read more about Tokens on xrpl.org
{% endembed %}

## Request

{% tabs %}
{% tab title="GET" %}

```
GET /api/v1/account/{ACCOUNT}/assets
```

{% endtab %}
{% endtabs %}

## Example

{% tabs %}
{% tab title="curl" %}

```
curl https://api.xrpscan.com/api/v1/account/rGFuMiw48HdbnrUbkRYuitXTmfrDBNTCnX/assets
```

{% endtab %}
{% endtabs %}

## Response

{% tabs %}
{% tab title="JSON" %}

```json
[
  {
    "counterparty": "rvYAfWj5gh67oV6fW32ZzP3Aw4Eubs59B",
    "currency": "BTC",
    "value": "36.41805453512676",
    "counterpartyName": {
      "username": "Bitstamp",
      "account": "rvYAfWj5gh67oV6fW32ZzP3Aw4Eubs59B"
    }
  },
  {
    "counterparty": "rvYAfWj5gh67oV6fW32ZzP3Aw4Eubs59B",
    "currency": "EUR",
    "value": "4926372.911025",
    "counterpartyName": {
      "username": "Bitstamp",
      "account": "rvYAfWj5gh67oV6fW32ZzP3Aw4Eubs59B"
    }
  },
  {
    "counterparty": "rvYAfWj5gh67oV6fW32ZzP3Aw4Eubs59B",
    "currency": "USD",
    "value": "4673369.908680244",
    "counterpartyName": {
      "username": "Bitstamp",
      "account": "rvYAfWj5gh67oV6fW32ZzP3Aw4Eubs59B"
    }
  }
]
```

{% endtab %}
{% endtabs %}
