Time series for one station. bucket=raw returns individual readings (capped at 5000 points; narrow the range or coarsen the bucket on RangeTooLarge). hour/day buckets return UTC-aligned min/avg/max (sum for precipitation). No auth.
Parameters
Output
application/jsonbucket
string
Required
No description available.
series
array
Required
No description available.
station
stringat-uri
Required
An AT Protocol URI (e.g., at://did:plc:xyz/app.bsky.feed.post/abc).
Errors
StationNotFound
No indexed station with that AT-URI. RangeTooLarge
raw bucket over 5000 points; narrow the range or use hour/day. InvalidBucket
bucket must be raw, hour, or day. Try It
Requests are sent directly from your browser. Some servers may block requests due to CORS.
View raw schema
{
"type": "query",
"errors": [
{
"name": "StationNotFound",
"description": "No indexed station with that AT-URI."
},
{
"name": "RangeTooLarge",
"description": "raw bucket over 5000 points; narrow the range or use hour/day."
},
{
"name": "InvalidBucket",
"description": "bucket must be raw, hour, or day."
}
],
"output": {
"schema": {
"type": "object",
"required": [
"station",
"bucket",
"series"
],
"properties": {
"bucket": {
"type": "string"
},
"series": {
"type": "array",
"items": {
"ref": "net.atmowx.getStationHistory#series",
"type": "ref"
}
},
"station": {
"type": "string",
"format": "at-uri"
}
}
},
"encoding": "application/json"
},
"parameters": {
"type": "params",
"required": [
"station",
"from",
"to"
],
"properties": {
"to": {
"type": "string",
"format": "datetime"
},
"from": {
"type": "string",
"format": "datetime"
},
"bucket": {
"type": "string",
"default": "raw",
"knownValues": [
"raw",
"hour",
"day"
]
},
"station": {
"type": "string",
"format": "at-uri",
"description": "AT-URI of the net.atmowx.station record."
}
}
},
"description": "Time series for one station. bucket=raw returns individual readings (capped at 5000 points; narrow the range or coarsen the bucket on RangeTooLarge). hour/day buckets return UTC-aligned min/avg/max (sum for precipitation). No auth."
}