Linea · Schema

PriceResponse

A single hourly price data point for a token on the Linea network

BlockchainEthereumLayer 2ZK-EVMWeb3DeFiSmart ContractsJSON-RPCTokensConsenSys

Properties

Name Type Description
price number Price in USD at the given timestamp
timestamp string Date and time when the price was recorded
View JSON Schema on GitHub

JSON Schema

price-response.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://token-api.linea.build/schemas/price-response",
  "title": "PriceResponse",
  "description": "A single hourly price data point for a token on the Linea network",
  "type": "object",
  "properties": {
    "price": {
      "type": "number",
      "description": "Price in USD at the given timestamp",
      "example": 1.0
    },
    "timestamp": {
      "type": "string",
      "format": "date-time",
      "description": "Date and time when the price was recorded",
      "example": "2026-05-19T13:38:03.784Z"
    }
  },
  "required": ["price", "timestamp"]
}