Skip to main content
GET
/
v1
/
assets
/
tokens
List supported tokens with optional filtering
curl --request GET \
  --url https://api.xentfi.com/v1/assets/tokens \
  --header 'apiKey: <api-key>' \
  --header 'orgId: <api-key>'
{
  "data": [
    {
      "id": "69d851b9-c358-4359-becd-3e614ca1ab4d",
      "name": "Euro Coin",
      "symbol": "EURC",
      "decimals": 6,
      "address": "0x08210F9170F89Ab7658F0B5E3fF39b0E03C594D4",
      "standard": "ERC20",
      "logoUrl": "https://example.com/eurc-logo.png",
      "isActive": true,
      "network": "mainnet",
      "isNative": false,
      "configurations": null,
      "blockchain": {
        "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
        "name": "<string>",
        "slug": "<string>",
        "symbol": "<string>",
        "isActive": true,
        "isEvmCompatible": true,
        "chainId": 123,
        "logoUrl": "<string>",
        "tokenStandard": "<string>",
        "createdAt": "2023-11-07T05:31:56Z",
        "updatedAt": "2023-11-07T05:31:56Z"
      },
      "blockchainId": "8a864e95-4b86-423d-9ba4-f4e692ec121e",
      "createdAt": "2026-02-26T15:10:53.032Z",
      "updatedAt": "2026-02-26T15:10:53.032Z"
    }
  ],
  "total": 25,
  "hasMore": true
}

Documentation Index

Fetch the complete documentation index at: https://docs.xentfi.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

apiKey
string
header
required
orgId
string
header
required

Query Parameters

blockchainId
string

Filter by blockchain ID

blockchainSlug
string

Filter by blockchain slug (e.g., "base-mainnet")

network
enum<string>

Filter by network type

Available options:
mainnet,
testnet
isActive
boolean
default:true

Filter by active status

isNative
boolean

Filter by native token status

symbol
string

Filter by token symbol

name
string

Filter by token name

offset
integer
default:0

Number of items to skip

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

Maximum number of items to return

Required range: 1 <= x <= 100

Response

List of supported tokens

data
object[]
total
integer

Total number of tokens matching the filter

Example:

25

hasMore
boolean

Whether there are more results available

Example:

true