Skip to main content
GET
/
api
/
v1
/
assets
List assets
curl --request GET \
  --url https://api.paratro.com/api/v1/assets \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "asset_id": "ast_r1s2t3u4v5",
      "account_id": "acc_m1n2o3p4q5",
      "wallet_id": "wal_a1b2c3d4e5f6",
      "client_id": "cli_x1y2z3",
      "chain": "ethereum",
      "network": "mainnet",
      "symbol": "USDT",
      "name": "Tether USD",
      "decimals": 6,
      "asset_type": "ERC20",
      "balance": "1000.50",
      "locked_balance": "0.00",
      "is_active": true,
      "created_at": "2026-01-15T10:40:00Z",
      "contract_address": "0xdAC17F958D2ee523a2206206994597C13D831ec7"
    }
  ],
  "total": 123,
  "has_more": true
}

List Assets

Returns a paginated list of assets, optionally filtered by account.
account_id
string
Filter by account ID (omit for all assets).
page
integer
default:1
Page number (min 1).
page_size
integer
default:10
Items per page (1-100).

Response

{
  "data": [
    {
      "asset_id": "ast_01HXYZ...",
      "account_id": "acc_01HXYZ...",
      "wallet_id": "w_01HXYZ...",
      "client_id": "c_01HXYZ...",
      "chain": "ethereum",
      "network": "mainnet",
      "symbol": "ETH",
      "name": "Ethereum",
      "contract_address": "0x",
      "decimals": 18,
      "asset_type": "NATIVE",
      "balance": "1.5",
      "locked_balance": "0",
      "is_active": true,
      "created_at": "2025-01-15T10:30:45+08:00"
    }
  ],
  "total": 3,
  "has_more": false
}

Authorizations

Authorization
string
header
required

JWT access token obtained from the /api/v1/auth/token endpoint.

Query Parameters

account_id
string

Filter assets by account ID.

page
integer
default:1

Page number for pagination.

Required range: x >= 1
page_size
integer
default:10

Number of items per page.

Required range: 1 <= x <= 100

Response

List of assets retrieved successfully.

data
object[]
required
total
integer
required

Total number of assets.

has_more
boolean
required

Whether there are more results beyond the current page.