OpenSea · Example Payload

Generate_Listing_Fulfillment_Data_V2

NFTMarketplaceWeb3BlockchainTradingDigital Assets

Generate_Listing_Fulfillment_Data_V2 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": "generate_listing_fulfillment_data_v2",
  "method": "POST",
  "path": "/api/v2/listings/fulfillment_data",
  "request": {
    "requestBody": {
      "listing": {
        "hash": "string",
        "chain": "string",
        "protocol_address": "string"
      },
      "fulfiller": {
        "address": "string"
      },
      "consideration": {
        "asset_contract_address": "string",
        "token_id": "string"
      },
      "recipient": "string",
      "units_to_fill": 0
    }
  },
  "response": {
    "200": {
      "protocol": "string",
      "fulfillment_data": {
        "transaction": {
          "function": "string",
          "chain": 0,
          "to": "string",
          "value": "string",
          "input_data": null
        },
        "orders": [
          {
            "parameters": null,
            "signature": null
          }
        ]
      }
    }
  }
}