OpenSea · Example Payload

Get_Tool

NFTMarketplaceWeb3BlockchainTradingDigital Assets

Get_Tool 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_tool",
  "method": "GET",
  "path": "/api/v2/tools/{registry_chain}/{registry_addr}/{tool_id}",
  "request": {
    "parameters": {
      "registry_chain": "string",
      "registry_addr": "string",
      "tool_id": "string"
    }
  },
  "response": {
    "200": {
      "tool_id": "string",
      "registry_chain": "string",
      "registry_addr": "string",
      "creator": "string",
      "metadata_uri": "string"
    }
  }
}