get_aprs_history
Retrieve historical position data for a callsign within a specified timeframe using the APRS.fi API, enabling ham radio tracking and balloon chase analysis.
Instructions
Get position history for a callsign with time range
Input Schema
Name | Required | Description | Default |
---|---|---|---|
apiKey | No | APRS.fi API key (optional if set via /set-api-key) | |
callsign | Yes | The callsign to look up | |
lastHours | No | Number of hours to look back (default: 24) |
Input Schema (JSON Schema)
{
"properties": {
"apiKey": {
"description": "APRS.fi API key (optional if set via /set-api-key)",
"type": "string"
},
"callsign": {
"description": "The callsign to look up",
"type": "string"
},
"lastHours": {
"default": 24,
"description": "Number of hours to look back (default: 24)",
"type": "number"
}
},
"required": [
"callsign"
],
"type": "object"
}