SuperRare Tokens API

Retrieve token price data

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/superrare-tokens-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no email required.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

superrare-tokens-api-openapi.yml Raw ↑
openapi: 3.1.0
info:
  title: SuperRare Marketplace Collections Tokens API
  description: 'REST API providing programmatic access to SuperRare NFT metadata, artist profiles, auction data, collection information, sales history, and Merkle root/proof flows for batch operations on the SuperRare NFT marketplace built on Ethereum.

    '
  version: 1.0.0
  contact:
    name: SuperRare Support
    url: https://help.superrare.com/
  termsOfService: https://campaigns.superrare.com/terms
  license:
    name: SuperRare Terms of Service
    url: https://campaigns.superrare.com/terms
servers:
- url: https://api.superrare.com
  description: SuperRare Production API
tags:
- name: Tokens
  description: Retrieve token price data
paths:
  /v1/tokens/price/{symbol}:
    get:
      summary: Get Token Price
      description: Fetch the current USD price for a token by symbol (e.g., rare, eth, usdc)
      operationId: getTokenPrice
      tags:
      - Tokens
      parameters:
      - name: symbol
        in: path
        required: true
        description: Token symbol (case-insensitive)
        schema:
          $ref: '#/components/schemas/TokenSymbol'
      responses:
        '200':
          description: Token price
          headers:
            Cache-Control:
              schema:
                type: string
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TokenPriceResponse'
        '404':
          description: Token not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
components:
  schemas:
    ErrorResponse:
      type: object
      properties:
        error:
          type: string
    TokenPriceResponse:
      type: object
      properties:
        data:
          type: object
          properties:
            symbol:
              type: string
            priceUsd:
              type: number
            decimals:
              type: integer
            chainId:
              type: integer
            address:
              type: string
    TokenSymbol:
      type: string
      description: Token symbol (case-insensitive)
      example: rare
externalDocs:
  description: SuperRare Developer Documentation
  url: https://developer.superrare.com/