Token Monthly Prices
Propellyr platform provides OHLC for 60,000 Crypto Tokens. This API can be used to get monthly pricing data for a list of tokens.
Query Parameters
- yearMonth string requiredExample: 2022-03
- tokenAddresses string requiredExample: 0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2
- page integer requiredExample: 0
- size integer requiredExample: 50
Responses
- 200
200 response
- application/json
- Schema
- Example (from schema)
Schema
content object[]
tokenSymbol stringtokenAddress stringyearMonth stringprices object[]
id numberchainId numbertokenAddress stringrecordDate stringtokenSymbol stringopenPrice numberhighPrice numberlowPrice numberclosePrice numbersourceName stringsourceType stringlastTransactionDate stringpageable object
sort object
empty booleansorted booleanunsorted booleanoffset numberpageNumber numberpageSize numberpaged booleanunpaged boolean- totalPages number
- totalElements number
- last boolean
- size number
- number number
sort object
empty booleansorted booleanunsorted boolean- numberOfElements number
- first boolean
- empty boolean
{
"content": [
{
"tokenSymbol": "string",
"tokenAddress": "string",
"yearMonth": "string",
"prices": [
{
"id": 0,
"chainId": 0,
"tokenAddress": "string",
"recordDate": "string",
"tokenSymbol": "string",
"openPrice": 0,
"highPrice": 0,
"lowPrice": 0,
"closePrice": 0,
"sourceName": "string",
"sourceType": "string",
"lastTransactionDate": "string"
}
]
}
],
"pageable": {
"sort": {
"empty": true,
"sorted": true,
"unsorted": true
},
"offset": 0,
"pageNumber": 0,
"pageSize": 0,
"paged": true,
"unpaged": true
},
"totalPages": 0,
"totalElements": 0,
"last": true,
"size": 0,
"number": 0,
"sort": {
"empty": true,
"sorted": true,
"unsorted": true
},
"numberOfElements": 0,
"first": true,
"empty": true
}