Skip to main content
GET
/
v0
/
assets
List supported assets
curl --request GET \
  --url https://api.sumvin.com/v0/assets/ \
  --header 'Authorization: Bearer <token>'
{
  "_links": {
    "self": {
      "href": "<string>",
      "method": "GET",
      "templated": false,
      "description": "<string>"
    },
    "first": {
      "href": "<string>",
      "method": "GET",
      "templated": false,
      "description": "<string>"
    },
    "prev": {
      "href": "<string>",
      "method": "GET",
      "templated": false,
      "description": "<string>"
    },
    "next": {
      "href": "<string>",
      "method": "GET",
      "templated": false,
      "description": "<string>"
    },
    "last": {
      "href": "<string>",
      "method": "GET",
      "templated": false,
      "description": "<string>"
    }
  },
  "assets": [
    {
      "symbol": "<string>",
      "name": "<string>",
      "asset_type": "<string>",
      "decimals": 123,
      "chain_id": 123,
      "contract_address": "<string>"
    }
  ],
  "total": 123,
  "offset": 123,
  "limit": 123
}

Authorizations

Authorization
string
header
required

JWT token from Authorization header (Bearer token)

Headers

x-juno-orgid
string | null

Tenant org ID for multi-tenant auth

x-juno-jwt
string | null

JWT token from x-juno-jwt header

Query Parameters

chain_id
integer | null

Filter by EIP-155 chain ID

asset_type
enum<string> | null

Filter by asset type (crypto, fiat) Classification of supported asset types.

  • crypto - Cryptocurrency or blockchain token (ETH, USDC, etc.)
  • fiat - Government-issued currency (USD, EUR, GBP)
Available options:
crypto,
fiat
offset
integer
default:0

Pagination offset

Required range: x >= 0
limit
integer
default:50

Maximum results per page

Required range: 1 <= x <= 100

Response

Assets retrieved successfully

Paginated list of assets.

HAL-style hypermedia links for navigation.

assets
AssetData · object[]
required

List of assets

total
integer
required

Total number of assets matching filters

offset
integer
required

Current pagination offset

limit
integer
required

Maximum results per page