OpenSea · Example Payload

Get_Profile_Favorites

NFTMarketplaceWeb3BlockchainTradingDigital Assets

Get_Profile_Favorites 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_favorites",
  "method": "GET",
  "path": "/api/v2/account/{address}/favorites",
  "request": {
    "parameters": {
      "address": "string",
      "after": "string",
      "limit": 0,
      "sort_by": "CREATED_DATE",
      "sort_direction": "asc"
    }
  },
  "response": {
    "200": {
      "nfts": [
        {
          "identifier": "string",
          "collection": "string",
          "contract": "string",
          "token_standard": "string",
          "name": "string"
        }
      ],
      "next": "string"
    }
  }
}