latestOpenAPI 3.1.02026-08-1051108155.9 KB

6e6f8dad92bf

Token

Returns a list of all tokens

get/v1/token

Query parameters

order'asc' | 'desc'

Direction to paginate through objects

limitinteger

Limit the number of objects to return

cursorstring

Pointer to the current object in pagination dataset

depositEnabledboolean
Example:true

Filters tokens by if its enabled for deposit

withdrawEnabledboolean
Example:true

Filters tokens by if its enabled for withdraw

orderBy'createdAt'
Example:createdAt

Order by field

Response

hasNextboolean required

Whether there are more objects to paginate through

nextCursorstring

Pointer to the next page in pagination dataset

Example response

{
  "data": [
    {
      "addedBlockNumber": "838808",
      "address": "0x4c9EDD5852cd905f086C759E8383e09bff1E68B3",
      "createdAt": 1712019600000,
      "depositEnabled": true,
      "depositFee": "0",
      "erc20Decimals": 18,
      "erc20Name": "Wrapped USDe",
      "erc20Symbol": "WUSDe",
      "id": "9036443a-441a-4a66-87f2-bd5c44cdca7a",
      "lzOftAddress": "0x41e038d9c9aF27369EcBCe72A69a96695A1fD0D3",
      "minDeposit": "10.123456",
      "name": "USD",
      "withdrawEnabled": true,
      "withdrawFee": "1"
    }
  ],
  "hasNext": true
}