OpenSea Chain Endpoints API

Chain endpoints to discover supported blockchains and their capabilities

Operations 1

GET /api/v2/chains Get 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/opensea-chain-endpoints-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 form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

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

OpenAPI Specification

opensea-chain-endpoints-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: OpenSea Account Endpoints Chain Endpoints API
  description: The API for OpenSea
  contact:
    name: OpenSea
    url: https://www.opensea.io
    email: contact@opensea.io
  version: 2.0.0
servers:
- url: https://api.opensea.io
  description: Production server
security:
- ApiKeyAuth: []
tags:
- name: Chain Endpoints
  description: Chain endpoints to discover supported blockchains and their capabilities
paths:
  /api/v2/chains:
    get:
      tags:
      - Chain Endpoints
      summary: Get supported chains
      description: Get all supported blockchain chains with metadata including name, native currency symbol, swap support, and block explorer information.
      operationId: get_chains
      responses:
        '200':
          description: List of supported chains
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/ChainListResponse'
        '400':
          $ref: '#/components/responses/BadRequest'
        '500':
          $ref: '#/components/responses/InternalError'
components:
  schemas:
    ChainListResponse:
      type: object
      description: List of supported blockchains
      properties:
        chains:
          type: array
          description: List of supported chains
          items:
            $ref: '#/components/schemas/ChainResponse'
      required:
      - chains
    ChainResponse:
      type: object
      description: Information about a supported blockchain
      properties:
        chain:
          type: string
          description: The chain identifier slug used in API paths
          example: ethereum
        name:
          type: string
          description: Human-readable chain name
          example: Ethereum
        symbol:
          type: string
          description: Native currency symbol
          example: ETH
        supports_swaps:
          type: boolean
          description: Whether token swaps are supported on this chain
        block_explorer:
          type: string
          description: Block explorer name
          example: Etherscan
        block_explorer_url:
          type: string
          description: Block explorer base URL
          example: https://etherscan.io
      required:
      - block_explorer
      - block_explorer_url
      - chain
      - name
      - supports_swaps
      - symbol
  responses:
    BadRequest:
      description: For error reasons, review the response data.
    InternalError:
      description: Internal server error. Please open a support ticket so OpenSea can investigate.
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      description: API key required for authentication
      name: x-api-key
      in: header
x-tagGroups:
- name: Data & Discovery
  tags:
  - Chain Endpoints
  - Account Endpoints
  - Collection Endpoints
  - NFT Endpoints
  - Contract Endpoints
  - Token Endpoints
  - Search Endpoints
- name: Marketplace & Trading
  tags:
  - Listing Endpoints
  - Offer Endpoints
  - Order Endpoints
  - Swap Endpoints
  - Drops Endpoints
- name: Analytics & Events
  tags:
  - Analytics Endpoints
- name: Tools [Beta]
  tags:
  - Tool Endpoints [Beta]
- name: Transactions
  tags:
  - Transaction Endpoints