OpenSea · Example Payload

Get_Best_Offer_Nft

NFTMarketplaceWeb3BlockchainTradingDigital Assets

Get_Best_Offer_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_best_offer_nft",
  "method": "GET",
  "path": "/api/v2/offers/collection/{slug}/nfts/{identifier}/best",
  "request": {
    "parameters": {
      "slug": "string",
      "identifier": "string"
    }
  },
  "response": {
    "200": {
      "order_hash": "string",
      "chain": "string",
      "protocol_data": {
        "parameters": {
          "offerer": null,
          "offer": null,
          "consideration": null,
          "startTime": null,
          "endTime": null
        },
        "signature": "string"
      },
      "protocol_address": "string",
      "asset": {
        "identifier": "string",
        "contract": "string"
      }
    }
  }
}