OpenSea · Example Payload

Get_Order

NFTMarketplaceWeb3BlockchainTradingDigital Assets

Get_Order 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_order",
  "method": "GET",
  "path": "/api/v2/orders/chain/{chain}/protocol/{protocol_address}/{order_hash}",
  "request": {
    "parameters": {
      "chain": "string",
      "protocol_address": "string",
      "order_hash": "string"
    }
  },
  "response": {
    "200": {
      "order": {
        "order_hash": null,
        "chain": null,
        "protocol_data": null,
        "protocol_address": null,
        "asset": null
      }
    }
  }
}