get_aprs_position
Retrieve current position data for a ham radio callsign using the APRS.fi API, ideal for tracking and analysis in operations like balloon chasing or radio location monitoring.
Instructions
Get current position data for a specific callsign from APRS.fi
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 (e.g., "W1AW") |
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 (e.g., \"W1AW\")",
"type": "string"
}
},
"required": [
"callsign"
],
"type": "object"
}