v1

latestOpenAPI 3.1.02026-07-243035381.4 MB
Marketplace

Get exotic token price history from Cryptoslam

/v4/data/marketplace/cryptoslam/token/price/exotic/history

50 credits per API call

Returns token prices, FDV, liquidity and lookback percentage change quoted in any token at a historical block or timestamp.

Rules:

  • Provide either symbols or addresses, not both.
  • Max 30 entries for either parameter (pipe-delimited or comma separated).
  • Provide either quoteSymbol or quoteAddress for the quote token, not both.
  • Max 30 lookback periods (comma-separated or pipe-delimited minutes).

Supported blockchains:

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

Query parameters

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

Chains supported by the tokens and wallets endpoints.

The blockchain to work with.

symbolsstring
Example:SWARM,Billy

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:0xea87169699dabd028a78d4b91544b4298086baf6

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

quoteSymbolstring
Example:VADER

Quote token symbol (e.g., "VADER", "USDC", "WETH").

quoteAddressstring
Example:0x731814e491571a2e9ee3c5b1f7f3b962ee8f4870

Quote token contract address.

atBlockNumberinteger
Example:33511850

Block number to retrieve prices at (inclusive).

atTimestampstring date-time
Example:2025-07-29T18:17:27Z

UTC timestamp to retrieve prices at (inclusive). Overrides atBlockNumber if provided.

lookbackMinutesstring
Example:30,45,60

Comma-separated or pipe-delimited list of lookback periods in minutes (e.g., "30,45,60" or "30|45|60"). Maximum 30 periods. Returns percentage change for each specified period.

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.2111212657236631,
  "chain": "base",
  "block": 33511850,
  "utc": "2025-07-29T18:17:27Z",
  "quote": "VADER",
  "tokens": [
    {
      "name": "The SWARM (by SLAMai) by Virtuals",
      "symbol": "SWARM",
      "address": "0xea87169699dabd028a78d4b91544b4298086baf6",
      "price": 0.3427829542148172,
      "prev": [
        {
          "minutes": 30,
          "change": "1.94%"
        },
        {
          "minutes": 45,
          "change": "2.58%"
        },
        {
          "minutes": 60,
          "change": "2.78%"
        }
      ]
    },
    {
      "name": "Base Mascot",
      "symbol": "Billy",
      "address": "0xeb560289067c375e4897552dcda7e3d203bffbe2",
      "price": 0.3449084968980174,
      "prev": [
        {
          "minutes": 30,
          "change": "16.22%"
        },
        {
          "minutes": 45,
          "change": "22.30%"
        },
        {
          "minutes": 60,
          "change": "23.20%"
        }
      ]
    }
  ]
}