> ## Documentation Index
> Fetch the complete documentation index at: https://docs.yativo.com/llms.txt
> Use this file to discover all available pages before exploring further.

# List User Assets

> Retrieve all wallets and assets belonging to the authenticated user

<ParamField header="Authorization" type="string" required>
  Bearer token: `Bearer YOUR_ACCESS_TOKEN`
</ParamField>

<ParamField body="account_id" type="string">
  Filter assets by a specific account ID. If omitted, all assets across all accounts are returned.
</ParamField>

<RequestExample>
  ```bash theme={null}
  curl -X POST 'https://crypto-api.yativo.com/api/v1/assets/get-user-assets' \
    -H 'Authorization: Bearer YOUR_ACCESS_TOKEN' \
    -H 'Content-Type: application/json' \
    -d '{
      "account_id": "acc_01HX9KZMB3F7VNQP8R2WDGT4E5"
    }'
  ```
</RequestExample>

<ResponseExample>
  ```json theme={null}
  {
    "data": [
      {
        "id": "ast_6615c3c3e55d9ff7bc0a9012",
        "user_id": "usr_6615c3a1e55d9ff7bc0a1234",
        "account_id": "acc_6615c3b2e55d9ff7bc0a5678",
        "asset_id": "67db5f72ebea822c360d568d",
        "asset_name": "USD Coin (Solana)",
        "asset_short_name": "USDC",
        "ticker_name": "USDC_SOL",
        "chain": "SOL",
        "address": "7xKt3Bm4NZpQhsWn1YvJd2Lr8Pk5Cq9eAw6Fu0GiRHs",
        "amount": "0.300000",
        "token_type": "token",
        "image": "https://cdn.yativo.com/assets/tokens/usdc.png",
        "layer_type": null,
        "parent_chain": null,
        "created_at": "2026-01-13T22:06:33.284Z",
        "updated_at": "2026-03-08T10:02:32.849Z"
      }
    ],
    "status": true,
    "message": "Assets Listed Successfully"
  }
  ```
</ResponseExample>
