Blockchain.com Nft V2 API

The nft_v2 API from Blockchain.com — 2 operation(s) for nft_v2.

Operations 2

GET /public/nft/v2/asset/{network}/{contract_address}/{token_id} Get an NFT asset #
GET /public/nft/v2/account_assets/{owner_address} Get NFT assets owned by an address #

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/blockchain.com-nft-v2-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

blockchain.com-nft-v2-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: NFT Market Nft V2 API
  description: Backend service for NFT market data.
  version: 1.0.12
servers:
- url: https://api.blockchain.info/nft-market-api
tags:
- name: nft_v2
paths:
  /public/nft/v2/asset/{network}/{contract_address}/{token_id}:
    get:
      summary: Get an NFT asset
      description: Used to fetch the details of an individual asset.
      tags:
      - nft_v2
      parameters:
      - description: The contract address of the asset.
        required: true
        in: path
        name: contract_address
        schema:
          type: string
      - description: The blockchain network used.
        required: true
        in: path
        name: network
        schema:
          type: string
      - description: The token ID of the asset.
        required: true
        in: path
        name: token_id
        schema:
          type: string
      responses:
        '200':
          description: Default Response
      operationId: getPublicNftV2AssetByNetworkByContractAddressByTokenId
      x-operation-id-source: derived
  /public/nft/v2/account_assets/{owner_address}:
    get:
      summary: Get NFT assets owned by an address
      description: Used to fetch assets owned by a particular address.
      tags:
      - nft_v2
      parameters:
      - description: For pagination
        required: false
        in: query
        name: cursor
        schema:
          type: string
      - description: The blockchain network symbol (eg ETH). Comma-separated for multiple. Omission defaults to all networks.
        required: false
        in: query
        name: network
        schema:
          type: string
      - description: The data provider to query.
        required: false
        in: query
        name: provider
        schema:
          type: string
          enum:
          - moralis
          - opensea
      - description: The address to get assets from
        required: true
        in: path
        name: owner_address
        schema:
          type: string
      responses:
        '200':
          description: Default Response
      operationId: getPublicNftV2AccountAssetsByOwnerAddress
      x-operation-id-source: derived