Target Reports
GetTargetReports streams one TargetReport for each tracked target
update that matches the request filters.
Request Filters
sensor_filterSensors that must have contributed to the report. Leave empty to use all sensors associated with the token.
aircraft_filterICAO 24-bit transponder addresses. Leave empty to include all aircraft.
Response Contents
Each report can contain:
target: participant address and address typetimestampandlast_seenin milliseconds since Unix epochadsb: decoded ADS-B and Mode S state, if availablemlat: latest multilateration result, if availablecounters: per-target signal countersdropped_reports: absolute counter for skipped reports
Optional Fields
ADS-B and MLAT data are optional. Check field presence before reading optional submessages:
Python:
HasField('adsb')andHasField('mlat')Java:
hasAdsb()andhasMlat()
Typical Uses
Use target reports for virtual radar displays, target-specific monitoring, and applications that need decoded aircraft state rather than raw Mode S frames.