GETAPI key
Live position by callsign
GETapi.aircargomcp.com/aircraft/callsign/{cs}
Current position of an aircraft by its raw ATC callsign. Airborne only.
Path parameters
cs
Raw ATC callsign.
Response schema
9 fields
Derived from the example response, nested as the JSON is.
data
The payload. Everything an endpoint returns sits under this key.
data[]
callsign
registration
icao24_hex
aircraft_type
lat
Latitude.
lon
alt_ft
seen_at
curl 'https://api.aircargomcp.com/aircraft/callsign/GEC8160' \
-H "Authorization: Bearer tmcp_YOUR_API_KEY"const res = await fetch("https://api.aircargomcp.com/aircraft/callsign/GEC8160", {
headers: {
"Authorization": "Bearer tmcp_YOUR_API_KEY"
}
});
const data = await res.json();import requests
res = requests.get(
"https://api.aircargomcp.com/aircraft/callsign/GEC8160",
headers={"Authorization": "Bearer tmcp_YOUR_API_KEY"},
)
data = res.json() Response
{
"data": [
{
"callsign": "GEC8160",
"registration": "D-ALFA",
"icao24_hex": "3c6dd8",
"aircraft_type": "B77L",
"lat": 50.11, "lon": 8.68,
"alt_ft": 34000,
"seen_at": "2026-08-05T13:05:00Z"
}
]
}