OpenSea · Example Payload

Get_Profile_Listings

NFTMarketplaceWeb3BlockchainTradingDigital Assets

Get_Profile_Listings 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_profile_listings",
  "method": "GET",
  "path": "/api/v2/account/{address}/listings",
  "request": {
    "parameters": {
      "address": "string",
      "after": "string",
      "limit": 0,
      "collection_slugs": [
        "string"
      ],
      "chains": [
        "blast"
      ]
    }
  },
  "response": {
    "200": {
      "listings": [
        {
          "order_hash": null,
          "chain": null,
          "protocol_data": null,
          "protocol_address": null,
          "asset": null
        }
      ],
      "next": "string"
    }
  }
}