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 fields
Derived from the example response.
data
The payload. Everything an endpoint returns sits under this key.
data[].callsign
data[].registration
data[].icao24_hex
data[].aircraft_type
data[].lat
Latitude.
data[].lon
data[].alt_ft
data[].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"
}
]
}