OpenSea · Example Payload

Get_Offers_Nft

NFTMarketplaceWeb3BlockchainTradingDigital Assets

Get_Offers_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_offers_nft",
  "method": "GET",
  "path": "/api/v2/offers/collection/{slug}/nfts/{identifier}",
  "request": {
    "parameters": {
      "slug": "string",
      "identifier": "string",
      "limit": 20,
      "next.value": "string"
    }
  },
  "response": {
    "200": {
      "offers": [
        {
          "order_hash": null,
          "chain": null,
          "protocol_data": null,
          "protocol_address": null,
          "asset": null
        }
      ],
      "next": "string"
    }
  }
}