GET
/
api
/
tokens
curl -X GET "https://inkyswap.com/api/tokens"
{
  "name": "InkySwap Token List",
  "timestamp": "2024-01-15T12:00:00Z",
  "version": {
    "major": 1,
    "minor": 0,
    "patch": 0
  },
  "tokens": [
    {
      "chainId": 57073,
      "address": "0x0000000000000000000000000000000000000000",
      "symbol": "ETH",
      "name": "Ethereum",
      "decimals": 18,
      "logoURI": "https://raw.githubusercontent.com/InkySwap/token-logos/main/eth.png"
    },
    {
      "chainId": 57073,
      "address": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48",
      "symbol": "USDC",
      "name": "USD Coin",
      "decimals": 6,
      "logoURI": "https://raw.githubusercontent.com/InkySwap/token-logos/main/usdc.png"
    },
    {
      "chainId": 57073,
      "address": "0x1234567890abcdef1234567890abcdef12345678",
      "symbol": "MEME",
      "name": "Meme Token",
      "decimals": 18,
      "logoURI": "https://supabase.example.com/storage/v1/object/public/images/meme.png"
    }
  ]
}

Description

Returns a comprehensive token list that combines:
  1. The official InkySwap token registry from GitHub
  2. All InkyPump tokens that have reached full funding (funding_progress = 1)
This endpoint follows the Uniswap Token List standard format for easy integration with DEX interfaces.

Response

name
string
Name of the token list
timestamp
string
ISO timestamp of the token list
version
object
Version information
tokens
array
Array of token objects
{
  "name": "InkySwap Token List",
  "timestamp": "2024-01-15T12:00:00Z",
  "version": {
    "major": 1,
    "minor": 0,
    "patch": 0
  },
  "tokens": [
    {
      "chainId": 57073,
      "address": "0x0000000000000000000000000000000000000000",
      "symbol": "ETH",
      "name": "Ethereum",
      "decimals": 18,
      "logoURI": "https://raw.githubusercontent.com/InkySwap/token-logos/main/eth.png"
    },
    {
      "chainId": 57073,
      "address": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48",
      "symbol": "USDC",
      "name": "USD Coin",
      "decimals": 6,
      "logoURI": "https://raw.githubusercontent.com/InkySwap/token-logos/main/usdc.png"
    },
    {
      "chainId": 57073,
      "address": "0x1234567890abcdef1234567890abcdef12345678",
      "symbol": "MEME",
      "name": "Meme Token",
      "decimals": 18,
      "logoURI": "https://supabase.example.com/storage/v1/object/public/images/meme.png"
    }
  ]
}
curl -X GET "https://inkyswap.com/api/tokens"