v1

latestOpenAPI 3.1.02026-07-243035381.4 MB
Marketplace

Get token prices from Cryptoslam

/v4/data/marketplace/cryptoslam/token/price

40 credits per API call

Returns current token prices with FDV, liquidity, and 24h price change, quoted in USD, ETH, or BTC.

Rules:

  • Provide either symbols or addresses, not both.
  • Max 30 entries for either parameter (pipe-delimited or comma separated).
  • quote_symbol must be one of: USD, ETH, BTC.

Supported blockchains:

  • Ethereum - ethereum-mainnet
  • Base - base-mainnet
get/v4/data/marketplace/cryptoslam/token/price

Query parameters

chain'ethereum-mainnet' | 'base-mainnet' required

Chains supported by the tokens and wallets endpoints.

The blockchain to work with.

symbolsstring
Example:BTC,ETH

Comma-separated or pipe-delimited list of token symbols (e.g., "BTC,ETH" or "BTC|ETH"). Maximum 30 symbols. Mutually exclusive with addresses.

addressesstring
Example:0x4200000000000000000000000000000000000006

Comma-separated or pipe-delimited list of token contract addresses (e.g., "0x123...,0x456..." or "0x123...|0x456..."). Maximum 30 addresses. Mutually exclusive with symbols.

quoteSymbol'USD' | 'ETH' | 'BTC'
Example:USD

Quote symbol for price (USD, ETH, or BTC).

estimateCostboolean

When true, returns only the SLAM token cost for this query without performing the actual query.

Response

OK

slamnumber

The SLAM token cost for this API call

chainstring

The blockchain network name

blocknumber

Block number

utcstring date-time

UTC timestamp

quotestring

Quote currency symbol

Example response

{
  "slam": 0.033,
  "chain": "base",
  "block": 33244773,
  "utc": "2025-07-23T13:54:53Z",
  "quote": "USD",
  "tokens": [
    {
      "name": "The SWARM (by SLAMai) by Virtuals",
      "symbol": "SWARM",
      "address": "0xea87169699dabd028a78d4b91544b4298086baf6",
      "price": 0.004873,
      "prev": [
        {
          "minutes": 1440,
          "change": "-17.00%"
        }
      ],
      "fdv": 4873223,
      "liquidity": 458831
    }
  ]
}