Briefing pack
A customized briefing pack in PDF format can be obtained for each route. The syntax is as follows:
HTTP GET to https://api.autorouter.aero/v1.0/flightplan/<routeid>/briefing?<item_1>[&<item_n>]
The parameters denote the briefing pack components that are requested. Possible values include:
- navlog
Navigation log, also known as “PLOG”. - wb
Mass & Balance calculation. - distances
Takeoff and landing distances. - climb
Climb data including graph. - descent
Descent data including graph. - metartaf
Route METAR/TAF information including map. - gramet
GRAMET vertical weather forecast. - isobaric
Horizontal weather forecast for MSL. - skewt
Predicted Skew-T diagrams. - raobs
Radiosonde Skew-T diagrams (balloon ascents). - sigwx
Significant weather chart. - mslp
MSLP weather forecast plates. - temsi
French TEMSI for Europe and France if the route applies. - atcbriefing
ATC related information such as flight plan addressing and FIRs crossed. - notam
NOTAM briefing including graphical overview. - milbulletin
Military bulletins about airspace reservations in certain countries. - icaofpl
ICAO flight plan form. - raim
Receiver Autonomous Integration Monitoring forecast from AUGUR, predicting GPS coverage issues. - atcharges
ATC enroute charge information if applicable.
The briefing pack will be returned as PDF. This can take several minutes, depending on the options selected and the complexity of the route. Make sure to adjust your HTTP stack’s timeout values accordingly.
If the route was updated to include references to alternate routes, the briefing pack’s navlog and GRAMET will include them as well.
Non blocking interface
Alternatively, there is a non blocking interface to obtain a briefing pack invoked via
HTTP POST to https://api.autorouter.aero/v1.0/flightplan/<routeid>/briefing
With the following HTTP POST parameters:
- method
Set to either “download” or “email”. In the email case, the pack will be sent to the current user’s email account once completed. In the download case, the call will return a token which can be used to poll for the briefing pack and download it. - items
JSON array containing the briefing pack item names as listed above.
Once requesting a non blocking download, you can query for the finished briefing pack by using the token returned and the following call:
HTTP GET to https://api.autorouter.aero/v1.0/flightplan/<routeid>/briefing/<token>[?poll]
This call either returns 404 if the briefing pack is not (yet) available or 200 when the briefing pack is available. If the parameter poll is given, the briefing pack is not returned, only the status. It can then be obtained by calling again without the poll parameter.
GRAMET
You can request a separate GRAMET as a single PDF file by issuing
HTTP GET to https://api.autorouter.aero/v1.0/met/gramet?fpl=<fpl>
The parameter fpl is the flight plan in ICAO format. Alternatively you can pass a list of waypoints with the following invocation format:
HTTP GET to https://api.autorouter.aero/v1.0/met/gramet?waypoints=<wpts>&altitude=<alt>&departuretime=<timestamp>&totaleet=<seconds>
The waypoints are given as a space separated string with designated points, airport ICAO IDs, navaid names. departuretime is given in seconds since the Unix epoch and totaleet specifies the length of the flight in seconds.