OpenSea · Example Payload

Get_Nft

NFTMarketplaceWeb3BlockchainTradingDigital Assets

Get_Nft is an example object payload from OpenSea, with 5 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

operationIdmethodpathrequestresponse

Example Payload

Raw ↑
{
  "operationId": "get_nft",
  "method": "GET",
  "path": "/api/v2/chain/{chain}/contract/{address}/nfts/{identifier}",
  "request": {
    "parameters": {
      "chain": "string",
      "address": "string",
      "identifier": "string"
    }
  },
  "response": {
    "200": {
      "nft": {
        "identifier": "string",
        "collection": "string",
        "contract": "string",
        "token_standard": "string",
        "name": "string"
      }
    }
  }
}