OpenSea · Example Payload

Create_Listing_Actions

NFTMarketplaceWeb3BlockchainTradingDigital Assets

Create_Listing_Actions 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": "create_listing_actions",
  "method": "POST",
  "path": "/api/v2/listings/actions",
  "request": {
    "requestBody": {
      "items": [
        {
          "chain": "ethereum",
          "contract": "0x...",
          "token_id": 1234,
          "quantity": 1,
          "price": {
            "current": null
          }
        }
      ],
      "address": "0x...",
      "use_creator_fee": true,
      "taker": "string"
    }
  },
  "response": {
    "200": {
      "steps": [
        null
      ]
    }
  }
}