Token Info

Get tokens by field

get

Retrieve complete token information by a specific field (slug, symbol, or name). This endpoint returns full TokenInfo objects with all metadata.

Authorizations
Path parameters
fieldstring · enumRequired

The field to search by. Choose from available options:

  • slug: Unique token identifier (recommended)
  • symbol: Token ticker (e.g., BTC, ETH)
  • name: Full token name
Example: {"summary":"Search by slug","value":"slug"}Possible values:
valuestring · min: 1 · max: 100Required

The value to search for in the specified field.

Examples by field:

  • slug: "bitcoin", "ethereum"
  • symbol: "BTC", "ETH"
  • name: "Bitcoin", "Ethereum"
Example: {"summary":"Bitcoin slug","value":"bitcoin"}
Responses
200

Complete token information

application/json
get
GET /token/by/{field}/{value} HTTP/1.1
Host: cell0.hyperbola.network
x-api-key: YOUR_API_KEY
Accept: */*
{
  "name": "Bitcoin",
  "symbol": "BTC",
  "logo": "https://cryptologos.cc/logos/bitcoin-btc-logo.png",
  "slug": "bitcoin",
  "contracts": [
    {
      "address": "0x0000000000000000000000000000000000000000",
      "network": "ethereum"
    }
  ],
  "urls": {
    "website": [
      "https://bitcoin.org"
    ],
    "twitter": [
      "https://twitter.com/bitcoin"
    ],
    "messageBoard": [
      "https://bitcointalk.org"
    ],
    "chat": [],
    "facebook": [],
    "explorer": [
      "https://blockstream.info/"
    ],
    "reddit": [
      "https://reddit.com/r/Bitcoin"
    ],
    "technicalDoc": [
      "https://bitcoin.org/bitcoin.pdf"
    ],
    "sourceCode": [
      "https://github.com/bitcoin/bitcoin"
    ],
    "announcement": []
  },
  "dateLaunched": "2009-01-03",
  "dateAdded": "2013-04-28",
  "infiniteSupply": false,
  "selfReportedCirculatingSupply": null,
  "selfReportedTags": [
    "cryptocurrency",
    "store-of-value"
  ],
  "selfReportedMarketCap": null
}

Last updated