Winds Aloft
Winds aloft forecasts at multiple altitudes for 6, 12, and 24-hour periods.
GET
/api/v1/navlog/winds-aloft/{forecast}Commercial PilotGet Winds Aloft Data
Parameters
| Name | In | Type | Description |
|---|---|---|---|
| forecast* | path | integer | Forecast period (6, 12, or 24 hours) |
Responses
200Returns the winds aloft dataWindsAloftDto
validTimedate-timeValid time for the forecast data.
forUseStartTimedate-timeStart of the forecast use period.
forUseEndTimedate-timeEnd of the forecast use period.
windTempWindsAloftSiteDto[]Wind and temperature data for each reporting site.
idstringSite identifier (e.g., DFW, ABI).
latnumberSite latitude in decimal degrees.
lonnumberSite longitude in decimal degrees.
windTempRecord<string, WindTempDto>Wind and temperature data keyed by altitude level (e.g., "3000", "6000").
400If the forecast period is invalidApiErrorResponse
codestringMachine-readable error code (e.g., "AIRCRAFT_NOT_FOUND").
messagestringHuman-readable error message suitable for display.
detailsstringnullableAdditional error details (only included in development environment).
validationErrorsRecord<string, string[]>nullableField-level validation errors (only for validation failures).
timestampstringUTC timestamp when the error occurred.
traceIdstringnullableCorrelation ID for tracing the request.
pathstringnullableRequest path that generated the error.
503ApiErrorResponse
codestringMachine-readable error code (e.g., "AIRCRAFT_NOT_FOUND").
messagestringHuman-readable error message suitable for display.
detailsstringnullableAdditional error details (only included in development environment).
validationErrorsRecord<string, string[]>nullableField-level validation errors (only for validation failures).
timestampstringUTC timestamp when the error occurred.
traceIdstringnullableCorrelation ID for tracing the request.
pathstringnullableRequest path that generated the error.
Code Examples
curl \
-H "Ocp-Apim-Subscription-Key: YOUR_API_KEY" \
"https://preflightapi-apim-service.azure-api.net/api/v1/navlog/winds-aloft/06"