Get view and download time series data
Parameters
Output
Encoding
application/jsonbuckets
array
Required
Time series data buckets
timestamp
stringdatetime
Required
Query timestamp
Errors
AuthenticationRequired
AdminRequired
Try It
Requests are sent directly from your browser. Some servers may block requests due to CORS.
View raw schema
{
"type": "query",
"errors": [
{
"name": "AuthenticationRequired"
},
{
"name": "AdminRequired"
}
],
"output": {
"schema": {
"type": "object",
"required": [
"buckets",
"timestamp"
],
"properties": {
"buckets": {
"type": "array",
"items": {
"ref": "#timeSeriesBucket",
"type": "ref"
},
"description": "Time series data buckets"
},
"timestamp": {
"type": "string",
"format": "datetime",
"description": "Query timestamp"
}
}
},
"encoding": "application/json"
},
"parameters": {
"type": "params",
"properties": {
"uri": {
"type": "string",
"format": "at-uri",
"description": "Specific eprint URI (aggregate if omitted)"
},
"granularity": {
"type": "string",
"description": "Time bucket granularity",
"knownValues": [
"hour",
"day",
"week"
]
}
}
},
"description": "Get view and download time series data"
}