GETNo key
Resolve an AWB prefix
GETapi.aircargomcp.com/prefix/{code}
Map a 3-digit air waybill prefix to its airline. No key required.
Path parameters
code
3-digit AWB prefix.
Response fields
Derived from the example response.
data
The payload. Everything an endpoint returns sits under this key.
data.prefix
3-digit AWB prefix.
data.iata
IATA code.
data.name
Human-readable name.
data.site
Public tracking site for the carrier.
Try it No key
curl 'https://api.aircargomcp.com/prefix/020'
const res = await fetch("https://api.aircargomcp.com/prefix/020");
const data = await res.json(); import requests
res = requests.get("https://api.aircargomcp.com/prefix/020")
data = res.json()
Sample response example
{
"data": {
"prefix": "020",
"iata": "LH",
"name": "Lufthansa Cargo",
"site": "https://lufthansa-cargo.com/eservices/etracking/awb-details"
}
} This preview uses documented example data and makes no live request. Get a key to run live.