Pendle · Schema
PriceOHLCVResponse
Web3DeFiYield TokenizationCryptoPrincipal TokensYield TokensAMMLiquidity Pools
Properties
| Name | Type | Description |
|---|---|---|
| limit | number | Maximum number of results returned |
| total | number | Total number of data points available |
| currency | string | Currency of the price data (e.g., USD) |
| timeFrame | string | Time frame of each OHLCV data point (e.g., "hour", "day", "week") |
| timestamp_start | string | Start timestamp of the data range |
| timestamp_end | string | End timestamp of the data range |
| results | array |
JSON Schema
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "PriceOHLCVResponse",
"type": "object",
"properties": {
"limit": {
"type": "number",
"description": "Maximum number of results returned"
},
"total": {
"type": "number",
"description": "Total number of data points available"
},
"currency": {
"type": "string",
"description": "Currency of the price data (e.g., USD)"
},
"timeFrame": {
"type": "string",
"description": "Time frame of each OHLCV data point (e.g., \"hour\", \"day\", \"week\")"
},
"timestamp_start": {
"format": "date-time",
"type": "string",
"description": "Start timestamp of the data range"
},
"timestamp_end": {
"format": "date-time",
"type": "string",
"description": "End timestamp of the data range"
},
"results": {
"type": "array",
"items": {
"$ref": "#/components/schemas/OHLCVDataPoint"
}
}
},
"required": [
"limit",
"total",
"currency",
"timeFrame",
"results"
]
}