Skip to main content
POST
/
api
/
military
/
v1
/
get-aircraft-details-batch
GetAircraftDetailsBatch
curl --request POST \
  --url https://api.example.com/api/military/v1/get-aircraft-details-batch \
  --header 'Content-Type: application/json' \
  --data '
{
  "icao24s": [
    "<string>"
  ]
}
'
{
  "results": {},
  "fetched": 123,
  "requested": 123,
  "configured": true
}

Body

application/json

GetAircraftDetailsBatchRequest looks up multiple aircraft by ICAO 24-bit hex.

icao24s
string[]
Required array length: 1 - 20 elements

ICAO 24-bit hex addresses (lowercase). Max 20.

Response

Successful response

GetAircraftDetailsBatchResponse contains the batch lookup results.

results
object

Map of icao24 -> aircraft details for found aircraft.

fetched
integer<int32>

Number of aircraft successfully fetched from upstream.

requested
integer<int32>

Number of aircraft requested.

configured
boolean

Whether the Wingbits API is configured.