Avalanche · Schema

NetworkTokenDetails

BlockchainWeb3AvalancheNFTDeFiCross-Chain

Properties

Name Type Description
networkToken object
currentPrice object The current token price, if available.
historicalPrice object The historical token price at the time the transaction occured, if available. Note, this is only provided if the transaction occured more than 24 hours ago.
View JSON Schema on GitHub

JSON Schema

NetworkTokenDetails.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/avalanche/main/json-schema/NetworkTokenDetails.json",
  "title": "NetworkTokenDetails",
  "type": "object",
  "properties": {
    "networkToken": {
      "$ref": "#/components/schemas/NetworkToken"
    },
    "currentPrice": {
      "description": "The current token price, if available.",
      "allOf": [
        {
          "$ref": "#/components/schemas/Money"
        }
      ]
    },
    "historicalPrice": {
      "description": "The historical token price at the time the transaction occured, if available. Note, this is only provided if the transaction occured more than 24 hours ago.",
      "allOf": [
        {
          "$ref": "#/components/schemas/Money"
        }
      ]
    }
  },
  "required": [
    "networkToken"
  ]
}