OpenSea · Example Payload

List_Tools

NFTMarketplaceWeb3BlockchainTradingDigital Assets

List_Tools 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": "list_tools",
  "method": "GET",
  "path": "/api/v2/tools",
  "request": {
    "parameters": {
      "sort_by": "string",
      "type": "string",
      "limit": 20,
      "cursor.value": "string"
    }
  },
  "response": {
    "200": {
      "tools": [
        {
          "tool_id": "string",
          "registry_chain": "string",
          "registry_addr": "string",
          "creator": "string",
          "metadata_uri": "string"
        }
      ],
      "next": "string"
    }
  }
}