OpenSea · Example Payload

Search_Tools

NFTMarketplaceWeb3BlockchainTradingDigital Assets

Search_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": "search_tools",
  "method": "GET",
  "path": "/api/v2/tools/search",
  "request": {
    "parameters": {
      "query": "string",
      "registry_chain": "string",
      "tags": [
        "string"
      ],
      "access_type": "string",
      "creator": "string"
    }
  },
  "response": {
    "200": {
      "results": [
        {
          "tool_id": "string",
          "registry_chain": "string",
          "registry_addr": "string",
          "name": "string",
          "description": "string"
        }
      ],
      "next": "string"
    }
  }
}