OpenSea · Schema

OfferAggregatePriceResponse

Price information for an offer aggregate

NFTMarketplaceWeb3BlockchainTradingDigital Assets

Properties

Name Type Description
usd_price string Price in USD
token_unit number Price in token units
symbol string Payment token symbol
chain string Blockchain chain
View JSON Schema on GitHub

JSON Schema

OfferAggregatePriceResponse.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://opensea.io/schemas/OfferAggregatePriceResponse",
  "title": "OfferAggregatePriceResponse",
  "type": "object",
  "description": "Price information for an offer aggregate",
  "properties": {
    "usd_price": {
      "type": "string",
      "description": "Price in USD"
    },
    "token_unit": {
      "type": "number",
      "format": "double",
      "description": "Price in token units"
    },
    "symbol": {
      "type": "string",
      "description": "Payment token symbol"
    },
    "chain": {
      "type": "string",
      "description": "Blockchain chain"
    }
  },
  "required": [
    "chain",
    "token_unit",
    "usd_price"
  ]
}