Skip to main content
GET
/
api
/
v1
/
tokens
Get token directory
curl --request GET \
  --url https://api.example.com/api/v1/tokens
{
  "code": 0,
  "msg": "ok",
  "data": {
    "items": [
      {
        "chainId": 8453,
        "address": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
        "symbol": "USDC",
        "name": "USD Coin",
        "decimals": 6,
        "logoUrl": "https://assets.example.com/usdc.png",
        "isVerified": true
      }
    ]
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.nexfi.robert.dpdns.org/llms.txt

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

Query Parameters

chainId
string

Single-chain filter.

Example:

"8453"

chainIds
string

Multi-chain filter, comma separated.

Example:

"1,8453,42161"

q
string

Keyword search.

Example:

"USDC"

keyword
string

Keyword alias of q.

Example:

"eth"

address
string

Exact contract address lookup, usually used with chainId.

Example:

"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"

verifiedOnly
enum<string>

Whether only verified tokens should be returned.

Available options:
true,
false
Example:

"true"

Response

200 - application/json

Token response

Standard response envelope.

code
integer
required

Business status code. 0 means success.

Example:

0

msg
string
required

Human-readable message.

Example:

"ok"

data
object