OpenSea · Schema

TotalSpentResponse

Total spent across all assets in a transaction

NFTMarketplaceWeb3BlockchainTradingDigital Assets

Properties

Name Type Description
price_per_token array Price breakdown per token type
View JSON Schema on GitHub

JSON Schema

TotalSpentResponse.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://opensea.io/schemas/TotalSpentResponse",
  "title": "TotalSpentResponse",
  "type": "object",
  "description": "Total spent across all assets in a transaction",
  "properties": {
    "price_per_token": {
      "type": "array",
      "description": "Price breakdown per token type",
      "items": {
        "$ref": "#/components/schemas/PriceResponse"
      }
    }
  },
  "required": [
    "price_per_token"
  ]
}