OpenSea · Example Payload

Get_Token_Liquidity_Pools

NFTMarketplaceWeb3BlockchainTradingDigital Assets

Get_Token_Liquidity_Pools 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_token_liquidity_pools",
  "method": "GET",
  "path": "/api/v2/chain/{chain}/token/{address}/liquidity-pools",
  "request": {
    "parameters": {
      "chain": "string",
      "address": "string",
      "limit": 0
    }
  },
  "response": {
    "200": {
      "pools": [
        {
          "pool_type": "string",
          "pool_identifier": "string",
          "pool_address": "string",
          "base_token": "string",
          "quote_token": "string"
        }
      ],
      "next": "string"
    }
  }
}