Solidus Labs Chain API API

The Chain API API from Solidus Labs — 1 operation(s) for chain api.

Operations 1

GET / List Supported Chains #

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/solidus-labs-chain-api-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

solidus-labs-chain-api-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Chain API
  version: '2.0'
  description: Published by Solidus Labs as the TokenSniffer API. Assembled verbatim from the OpenAPI 3.1.0 fragments Solidus Labs publishes on each operation page of https://tokensniffer.readme.io/reference/ (llms.txt markdown rendering). No operation, parameter, schema or example was authored by API Evangelist.
  contact:
    name: TokenSniffer Support
    url: https://tokensniffer.com/contact
  x-provider: Solidus Labs
  x-product: TokenSniffer
servers:
- url: https://tokensniffer.com/api/v2/chains
security:
- {}
tags:
- name: Chain API
paths:
  /:
    get:
      summary: List Supported Chains
      description: Get a list of supported blockchains including chain IDs.  API key not required.
      operationId: get-supported-networks
      responses:
        '200':
          description: '200'
          content:
            application/json:
              examples:
                Result:
                  value: "{\n  \"total\": 12,\n  \"result\": [\n    {\n      \"id\": 1,\n      \"name\": \"Ethereum\",\n      \"alias\": \"eth\"\n    },\n    {\n      \"id\": 10,\n      \"name\": \"Optimism\",\n      \"alias\": \"opt\"\n    },\n    {\n      \"id\": 25,\n      \"name\": \"Cronos\",\n      \"alias\": \"cronos\"\n    },\n    {\n      \"id\": 56,\n      \"name\": \"BNB Smart Chain\",\n      \"alias\": \"bsc\"\n    },\n    {\n      \"id\": 100,\n      \"name\": \"Gnosis\",\n      \"alias\": \"xdai\"\n    },\n    {\n      \"id\": 137,\n      \"name\": \"Polygon\",\n      \"alias\": \"poly\"\n    },\n    {\n      \"id\": 250,\n      \"name\": \"Fantom\",\n      \"alias\": \"ftm\"\n    },\n    {\n      \"id\": 321,\n      \"name\": \"KuCoin Community Chain\",\n      \"alias\": \"kcc\"\n    },\n    {\n      \"id\": 42161,\n      \"name\": \"Arbitrum\",\n      \"alias\": \"arb\"\n    },\n    {\n      \"id\": 42262,\n      \"name\": \"Oasis\",\n      \"alias\": \"oasis\"\n    },\n    {\n      \"id\": 43114,\n      \"name\": \"Avalanche\",\n      \"alias\": \"avax\"\n    },\n    {\n      \"id\": 1666600000,\n      \"name\": \"Harmony\",\n      \"alias\": \"harmony\"\n    }\n  ]\n}"
              schema:
                type: object
                properties:
                  total:
                    type: integer
                    example: 12
                    default: 0
                  result:
                    type: array
                    items:
                      type: object
                      properties:
                        id:
                          type: integer
                          example: 1
                          default: 0
                        name:
                          type: string
                          example: Ethereum
                        alias:
                          type: string
                          example: eth
      deprecated: false
      security: []
      x-source-doc: https://tokensniffer.readme.io/reference/get-supported-networks
      tags:
      - Chain API
x-evidence:
  fetched: '2026-08-05'
  method: searched
  sources:
  - https://tokensniffer.readme.io/reference/get-supported-networks
  note: Each source page embeds a "# OpenAPI definition" JSON block authored by the provider in ReadMe; those blocks were parsed and merged by shared info.title + servers[].url. Nothing added.