GET
/
networks
/
{network}
/
tokens
/
{token_address}
curl --request GET \
  --url https://api.dexpaprika.com/networks/{network}/tokens/{token_address}
{
  "id": "JUPyiwrYJFskUPiHa7hkeR8VUtAeFoSYbKedZNsDvCN",
  "name": "Jupiter",
  "symbol": "JUP",
  "chain": "solana",
  "decimals": 6,
  "total_supply": 9999979509174084,
  "description": "",
  "website": "",
  "explorer": "",
  "added_at": "2024-09-11T04:37:20Z",
  "summary": {
    "price_usd": 0.6692687725734983,
    "fdv": 6692674011.865073,
    "liquidity_usd": 25796064.003077608,
    "24h": {
      "volume": 122851769.74866481,
      "volume_usd": 84119865.87252772,
      "sell": 147309,
      "buy": 77615,
      "txns": 224924
    },
    "6h": {
      "volume": 30490167.650738973,
      "volume_usd": 20100302.93373614,
      "sell": 38908,
      "buy": 21561,
      "txns": 60469
    },
    "1h": {
      "volume": 2339429.714102,
      "volume_usd": 1569385.0617313772,
      "sell": 4476,
      "buy": 2202,
      "txns": 6678
    },
    "30m": {
      "volume": 1053011.5253609999,
      "volume_usd": 705252.1467858246,
      "sell": 1893,
      "buy": 944,
      "txns": 2837
    },
    "15m": {
      "volume": 420812.23249900003,
      "volume_usd": 281063.0592944985,
      "sell": 864,
      "buy": 442,
      "txns": 1306
    },
    "5m": {
      "volume": 75084.709753,
      "volume_usd": 50179.69475522313,
      "sell": 238,
      "buy": 88,
      "txns": 326
    }
  },
  "last_updated": "2025-02-25T13:44:45.699686371Z"
}

Path Parameters

network
string
required

Network slug or ID (e.g., 'solana'). You can find the list of supported networks with their IDs here: /networks.

token_address
string
required

Token contract address. Such as JUPyiwrYJFskUPiHa7hkeR8VUtAeFoSYbKedZNsDvCN for Jupiter on Solana.

Response

200
application/json
successful operation

Essential information for a token, including metadata and status.

id
string

Internal or canonical ID for the token (e.g., "usdc-usd-coin").

name
string

Human-readable name of the token (e.g., "USD Coin").

symbol
string

Ticker symbol of the token (e.g., "USDC").

decimals
number

Decimal precision of the token (e.g., 6 for USDC).

description
string

A detailed overview of the token's purpose, use cases, or background.

website
string

Official website URL for the token/project.

explorer
string

Link to a block explorer or analytics page for this token.

summary
object

A comprehensive summary of token-related metrics, including price, liquidity, and transaction volumes across various time intervals.

Example:
{
  "price_usd": 125.67,
  "fdv": 12567,
  "liquidity_usd": 5000000,
  "24h": {
    "volume": 100000,
    "volume_usd": 102000,
    "sell": 150,
    "buy": 180,
    "txns": 330
  },
  "6h": {
    "volume": 25000,
    "volume_usd": 25500,
    "sell": 45,
    "buy": 50,
    "txns": 95
  },
  "1h": {
    "volume": 5000,
    "volume_usd": 5100,
    "sell": 10,
    "buy": 15,
    "txns": 25
  },
  "30m": {
    "volume": 2500,
    "volume_usd": 2550,
    "sell": 5,
    "buy": 8,
    "txns": 13
  },
  "15m": {
    "volume": 1250,
    "volume_usd": 1275,
    "sell": 2,
    "buy": 4,
    "txns": 6
  },
  "5m": {
    "volume": 500,
    "volume_usd": 510,
    "sell": 1,
    "buy": 1,
    "txns": 2
  }
}