OpenSea · Example Payload

Get_Top_Tokens

NFTMarketplaceWeb3BlockchainTradingDigital Assets

Get_Top_Tokens 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_top_tokens",
  "method": "GET",
  "path": "/api/v2/tokens/top",
  "request": {
    "parameters": {
      "limit": 0,
      "chains": [
        "blast"
      ],
      "cursor": "string"
    }
  },
  "response": {
    "200": {
      "tokens": [
        {
          "address": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48",
          "chain": "ethereum",
          "name": "USD Coin",
          "symbol": "USDC",
          "image_url": "string"
        }
      ],
      "next": "string"
    }
  }
}