OpenSea · Example Payload

Get_Nfts_By_Account

NFTMarketplaceWeb3BlockchainTradingDigital Assets

Get_Nfts_By_Account 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_nfts_by_account",
  "method": "GET",
  "path": "/api/v2/chain/{chain}/account/{address}/nfts",
  "request": {
    "parameters": {
      "address": "string",
      "chain": "string",
      "collection": "string",
      "limit": 20,
      "next.value": "string"
    }
  },
  "response": {
    "200": {
      "nfts": [
        {
          "identifier": "string",
          "collection": "string",
          "contract": "string",
          "token_standard": "string",
          "name": "string"
        }
      ],
      "next": "string"
    }
  }
}