Every API here is available over the APIs.io API and to AI agents over MCP.
MCP server
One button, every client — Claude, Cursor, VS Code and the rest.
https://apis.io/mcp
Tools for apis
7 MCP tools reach this
find_apisBrowse and filter every API in the catalog.
get_api_artifactsOne API's artifacts, grouped by type.
get_openapiThe primary OpenAPI for this API.
find_similar_apisAPIs that look like this one.
apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
resolveTurn a domain, URL or GitHub org into the provider it belongs to.
find_cohortsEvery scored population of providers in the catalog.
All 92 tools →
Call it yourself
curl for this page
This API
curl "https://apis.io/api/v1/apis/dtn-taf-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"
Discovery needs no key. Ratings and market analysis are Pro.
Get an API key
Free tier, no form to fill in. Signing in shares your email address with us — we
store it to create your key and to recognise you if you sign in with another
provider. See our Privacy Policy and
Terms.
A second provider on the same verified email joins the account you already have.
openapi: 3.2.0
info:
title: DTN TAF API
description: TAFs are a key piece of information required for flight planning and flight operations. DTN TAF API allows customers to get the data critical to them without unnecessary extra data.
version: 1.9.0
servers:
- url: https://aviation.api.dtn.com
security:
- clientCredentials: []
tags:
- name: TAF
description: On demand TAFs via API
paths:
/v1/tafs/:
get:
tags:
- TAF
summary: Get active TAFs
description: Get all available TAFs, potentially filtered by various query parameters. All specified filter parameters must be satisfied for an object to be returned in the response.
responses:
'200':
$ref: '#/components/responses/TafSuccess'
'400':
$ref: '#/components/responses/TafBadRequest'
'401':
$ref: '#/components/responses/ErrorUnauthorized'
parameters:
- $ref: '#/components/parameters/QueryOffset'
- $ref: '#/components/parameters/QueryLimit'
- $ref: '#/components/parameters/QueryTafUnitSystem'
- $ref: '#/components/parameters/QueryStationIds'
- $ref: '#/components/parameters/QueryBbox'
- $ref: '#/components/parameters/QueryPolygon'
- $ref: '#/components/parameters/QueryCircle'
- $ref: '#/components/parameters/QueryCorridor'
- $ref: '#/components/parameters/QueryDistanceUnits'
- $ref: '#/components/parameters/QueryIsValidAt'
- $ref: '#/components/parameters/QueryFromDateTime'
- $ref: '#/components/parameters/QueryUntilDateTime'
- $ref: '#/components/parameters/QueryInsertedAfter'
- $ref: '#/components/parameters/QueryInsertedThrough'
- $ref: '#/components/parameters/QueryFlightCodes'
- $ref: '#/components/parameters/QueryFlightCategories'
security:
- clientCredentials: []
components:
schemas:
Meta:
title: Meta
description: Meta data attached to every response
required:
- name
- request_id
- start_timestamp
- end_timestamp
- execution_time
type: object
properties:
name:
type: string
request_id:
type: string
start_timestamp:
type: integer
end_timestamp:
type: integer
execution_time:
type: integer
TafFeatureCollection:
description: GeoJSon 'FeatureCollection' object
externalDocs:
url: https://tools.ietf.org/html/rfc7946#section-3.3
allOf:
- $ref: '#/components/schemas/GeoJsonObject'
- type: object
required:
- features
properties:
features:
type: array
items:
$ref: '#/components/schemas/TafFeature'
GeoJsonObject:
description: 'GeoJSon object The coordinate reference system for all GeoJSON coordinates is a geographic coordinate reference system, using the World Geodetic System 1984 (WGS 84) datum, with longitude and latitude units of decimal degrees. This is equivalent to the coordinate reference system identified by the Open Geospatial Consortium (OGC) URN An OPTIONAL third-position element SHALL be the height in meters above or below the WGS 84 reference ellipsoid. In the absence of elevation values, applications sensitive to height or depth SHOULD interpret positions as being at local ground or sea level.
'
externalDocs:
url: https://tools.ietf.org/html/rfc7946#section-3
type: object
properties:
type:
type: string
enum:
- Feature
- FeatureCollection
- Point
- MultiPoint
- LineString
- MultiLineString
- Polygon
- MultiPolygon
- GeometryCollection
bbox:
description: 'A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.
'
type: array
items:
type: number
required:
- type
discriminator:
propertyName: type
TafItem:
type: object
required:
- forecastNumber
- layerNumber
- issueDateTime
- validDateTime
- expirationDateTime
- insertedDateTime
- forecastType
- probability
- windSpeed
- windGust
- windDirection
- flightCode
- flightCategory
- visibility
- rawTxt
- wmoCode
- vicinity
- cloudHeight
- ceilingCode
- stationId
properties:
forecastNumber:
type: number
layerNumber:
type: number
issueDateTime:
type: string
format: date-time
validDateTime:
type: string
format: date-time
expirationDateTime:
type: string
format: date-time
insertedDateTime:
type: string
format: date-time
forecastType:
type: string
probability:
type:
- number
- 'null'
windSpeed:
type:
- number
- 'null'
windGust:
type:
- number
- 'null'
windDirection:
type:
- number
- 'null'
flightCode:
type: number
flightCategory:
type: string
visibility:
type:
- number
- 'null'
rawTxt:
type: string
wmoCode:
type: string
vicinity:
type:
- number
- 'null'
cloudHeight:
type:
- number
- 'null'
ceilingCode:
type:
- string
- 'null'
stationId:
type: string
Geometry:
type: object
description: GeoJSon geometry
discriminator:
propertyName: type
required:
- type
externalDocs:
url: http://geojson.org/geojson-spec.html#geometry-objects
properties:
type:
type: string
enum:
- Point
- LineString
- Polygon
- MultiPoint
- MultiLineString
- MultiPolygon
description: the geometry type
Error:
title: Error
description: Error
required:
- type
- title
- status
- detail
- meta
type: object
properties:
url:
type: string
type:
enum:
- internal-server-error
- unauthorized
- bad-request
- service-unavailable
- forbidden
- not-found
type: string
title:
type: string
status:
type: number
detail:
type: string
instance:
type: string
errors:
type: array
items:
type: object
meta:
$ref: '#/components/schemas/Meta'
TafFeature:
description: GeoJSon 'Feature' object
externalDocs:
url: https://tools.ietf.org/html/rfc7946#section-3.2
allOf:
- $ref: '#/components/schemas/GeoJsonObject'
- type: object
required:
- geometry
- properties
properties:
geometry:
allOf:
- {}
- $ref: '#/components/schemas/Geometry'
properties:
$ref: '#/components/schemas/TafItem'
id:
oneOf:
- type: number
- type: string
responses:
ErrorUnauthorized:
description: Unauthorized
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
example:
type: unauthorized
title: Error while authenticating the user
status: 401
detail: Missing Authorization token.
instance: urn:dtn:aviation-api:/v1/notams/KIND:requestId:19e1b83a-cb2e-4460-b687-ce9d0c50b4b6
meta:
name: v1.notams.KIND
uuid: d64fc634-9bee-430d-8ab1-200337e6e9b2
request_id: 19e1b83a-cb2e-4460-b687-ce9d0c50b4b6
start_timestamp: 1714019217213
end_timestamp: 1714019217246
execution_time: 33
TafSuccess:
description: Successful
content:
application/json:
schema:
$ref: '#/components/schemas/TafFeatureCollection'
examples:
Success:
$ref: '#/components/examples/TafSuccessResponse'
TafBadRequest:
description: Bad Request
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
examples:
BadRequest:
$ref: '#/components/examples/TafBadRequestResponse'
parameters:
QueryFlightCodes:
name: flightCodes
description: Comma-separated list of flight code values. Must include only allowed values. Limits to objects whose `flightCode` value matches one of specified parameter values.
in: query
required: false
explode: false
schema:
type: array
items:
type: string
enum:
- '1'
- '2'
- '3'
- '4'
- '0'
QueryTafUnitSystem:
name: unitSystem
description: 'Identifier for units system used for numerical output values in TAF. Must be either `default` or `metric`. Default is `default`. Field units depending on unit system:<br> * `visibility`: default=`mi`, metric=`m`<br> * `windSpeed`: default=`kts`, metric=`m/s`<br> * `windGust`: default=`kts`, metric=`m/s`<br> * `cloudHeight`: default=`ft`, metric=`m`'
in: query
required: false
explode: false
schema:
type: string
enum:
- default
- metric
default: default
QueryInsertedThrough:
name: insertedThrough
description: UTC timestamp in format `YYYY-MM-DD hh:mm:ss.fff`. Limits to objects whose `insertedDateTime` is not later than that specified value. This allows to acquire only data that became available through this time. Requires use of fractional seconds for full precision. Allowed values relative to the current time vary depending on the data type. A data insertion time value being accepted through this parameter does not mean there will be applicable data to return in response.
in: query
required: false
schema:
type: string
pattern: ^\d{4}-\d{2}-\d{2} \d{2}:\d{2}:\d{2}(\.\d+)?
QueryFlightCategories:
name: flightCategories
description: Comma-separated list of flight category values. Must include only allowed values. Limits to objects whose `flightCategory` value matches one of specified parameter values.
in: query
required: false
explode: false
schema:
type: array
items:
type: string
enum:
- VFR
- MVFR
- IFR
- LIFR
- UNKNOWN
QueryInsertedAfter:
name: insertedAfter
description: UTC timestamp in format `YYYY-MM-DD hh:mm:ss.fff`. Limits to objects whose `insertedDateTime` is later than that specified value. This allows to acquire only data that became available after this time. Requires use of fractional seconds for full precision. Allowed values relative to the current time vary depending on the data type. A data insertion time value being accepted through this parameter does not mean there will be applicable data to return in response.
in: query
required: false
schema:
type: string
pattern: ^\d{4}-\d{2}-\d{2} \d{2}:\d{2}:\d{2}(\.\d+)?
QueryLimit:
name: limit
description: Provide no more than this many items in the response set.
in: query
required: false
schema:
type: integer
default: 1000
minimum: 1
maximum: 10000
QueryIsValidAt:
name: isValidAt
description: UTC timestamp in format `YYYY-MM-DD hh:mm:ss`. Limits to objects whose `validDateTime` is not earlier than the specified value and whose `expirationDateTime` is later than that specified value. Allowed values relative to the current time vary depending on the data type. A valid time value being accepted through this parameter does not mean there will be applicable data to return in response.
in: query
required: false
schema:
type: string
pattern: ^\d{4}-\d{2}-\d{2} \d{2}:\d{2}:\d{2}
QueryBbox:
name: bbox
description: Bounding box coordinates in the format `<min_X>,<min_Y>,<max_X>,<max_Y>`. The `X,Y` coordinates must be consistent with the `srid` (`4326` for longitude/latitude by default). Limits to objects within or intersecting the area so defined. No more than one of `bbox`, `polygon`, `circle`, and `corridor` may be used in one request. Requests with bbox definition of area that crosses antimeridian will fail.
in: query
required: false
schema:
type: string
QueryCircle:
name: circle
description: Circle coordinates and radius distance in the format `<X>,<Y>,<RADIUS>`. The `X,Y` coordinates must be consistent with the `srid` (`4326` for longitude/latitude by default). The `<RADIUS>` defines the distance (in default or `distanceUnits`-specified units) from the defined point. Limits to objects within or intersecting the area so defined. No more than one of `bbox`, `polygon`, `circle`, and `corridor` may be used in one request. Requests with circle definition of area that crosses antimeridian will fail. The larger the defined area, the more its shape on projected map will differ from true circle on spherical coordinates. Maximum allowed <RADIUS> is 400nm (and equal lengths for different `distanceUnits`).
in: query
required: false
schema:
type: string
QueryUntilDateTime:
name: untilDateTime
description: UTC timestamp in format `YYYY-MM-DD hh:mm:ss`. Limits to objects whose `validDateTime` is earlier than the specified value, i.e., only objects that began before this time. Allowed values relative to the current time vary depending on the data type. A time value being accepted through this parameter does not mean there will be applicable data to return in response.
in: query
required: false
schema:
type: string
pattern: ^\d{4}-\d{2}-\d{2} \d{2}:\d{2}:\d{2}
QueryPolygon:
name: polygon
description: Polygon coordinates in the format `<X_0>,<Y_0>,<X_1>,<Y_1>...,<X_n>,<Y_n>`. The `X,Y` coordinates must be consistent with the `srid` (`4326` for longitude/latitude by default). Must provide between 3 and 40 coordinates. If the last `X,Y` does not match the first `X,Y`, the first `X,Y` is copied to the end to close the polygon. Limits to objects within or intersecting the area so defined. No more than one of `bbox`, `polygon`, `circle`, and `corridor` may be used in one request. Requests with polygon definition of area that crosses antimeridian will fail or give unexpected results.
in: query
required: false
schema:
type: string
QueryOffset:
name: offset
description: Skip over this many into the response set; used for paginated results.
in: query
required: false
schema:
type: integer
default: 0
QueryFromDateTime:
name: fromDateTime
description: UTC timestamp in format `YYYY-MM-DD hh:mm:ss`. Limits to objects whose `expirationDateTime` is later than that specified value, i.e., only objects not ended by this time. Allowed values relative to the current time vary depending on the data type. A time value being accepted through this parameter does not mean there will be applicable data to return in response.
in: query
required: false
schema:
type: string
pattern: ^\d{4}-\d{2}-\d{2} \d{2}:\d{2}:\d{2}
QueryStationIds:
name: stationIds
description: Comma-separated list of station identifier values. Limits to objects whose `stationId` value matches one of specified parameter values.
in: query
required: false
schema:
type: string
QueryCorridor:
name: corridor
description: Line coordinates and distance from the line in the format `<X_0>,<Y_0>,<X_1>,<Y_1>...,<X_n>,<Y_n>,<HALFWIDTH>`. The `X,Y` coordinates must be consistent with the `srid` (`4326` for longitude/latitude by default). Must provide between 2 and 40 coordinates for the line. The `<HALFWIDTH>` defines the distance (in default or `distanceUnits`-specified units) from the line defined by the coordinates out to which to create encompassing shape. Limits to objects within or intersecting the area so defined. No more than one of `bbox`, `polygon`, `circle`, and `corridor` may be used in one request. Requests with corridor definition of area that crosses antimeridian will fail or give unexpected results. The larger the defined area, the more its shape on projected map will differ from true corridor on spherical coordinates. Maximum allowed <HALFWIDTH> is 200nm (and equal lengths for different `distanceUnits`).
in: query
required: false
schema:
type: string
QueryDistanceUnits:
name: distanceUnits
description: Units identifier for distances in definition for circle or corridor spatial filter. Default is `nm` (nautical miles).
in: query
required: false
schema:
type: string
enum:
- nm
- km
- m
- sm
default: nm
examples:
TafBadRequestResponse:
value:
url: https://aviation.api.dtn.com/v1/tafs/?bbox=-102,39,-101,41&flightCategories=ILFR
type: bad-request
title: Invalid Request
status: 400
detail: Validation failed.
instance: urn:dtn:aviation-api:/v1/tafs/:requestId:bbce79f8-56e4-495f-bd61-6d75413a23c0
errors:
- message: '`flightCategories` may include only ''VFR'', ''MVFR'', ''IFR'', ''LIFR'', ''UNKNOWN'''
parameter: flightCategories
value: ILFR
meta:
name: v1.tafs.?bbox=-102,39,-101,41&flightCategories=ILFR
uuid: 15c28e16-61cc-4545-b782-4e13da590660
request_id: bbce79f8-56e4-495f-bd61-6d75413a23c0
start_timestamp: 1728314967370
end_timestamp: 1728314967724
execution_time: 354
TafSuccessResponse:
value:
url: https://aviation.api.dtn.com/v1/tafs/?stationIds=KLAX,KLGB,KBUR
type: FeatureCollection
features:
- type: Feature
geometry:
type: Point
coordinates:
- -118.358333
- 34.200555
properties:
forecastType: FM
flightCategory: VFR
visibility: 7
rawTxt: FM080800 VRB03KT P6SM SKC
ceilingCode: SKC
stationId: KBUR
ogcFeatureId: 5
forecastNumber: 4
layerNumber: 0
issueDateTime: '2024-10-07T11:51:00.000Z'
validDateTime: '2024-10-08T08:00:00.000Z'
expirationDateTime: '2024-10-08T12:00:00.000Z'
insertedDateTime: '2024-10-07T11:53:14.884Z'
probability: null
windSpeed: 3
windGust: null
windDirection: 9999
flightCode: 1
wmoCode: null
vicinity: null
cloudHeight: null
unitSystem: default
- type: Feature
geometry:
type: Point
coordinates:
- -118.358333
- 34.200555
properties:
forecastType: FM
flightCategory: VFR
visibility: 7
rawTxt: FM080400 12005KT P6SM SKC
ceilingCode: SKC
stationId: KBUR
ogcFeatureId: 6
forecastNumber: 3
layerNumber: 0
issueDateTime: '2024-10-07T11:51:00.000Z'
validDateTime: '2024-10-08T04:00:00.000Z'
expirationDateTime: '2024-10-08T08:00:00.000Z'
insertedDateTime: '2024-10-07T11:53:14.884Z'
probability: null
windSpeed: 5
windGust: null
windDirection: 120
flightCode: 1
wmoCode: null
vicinity: null
cloudHeight: null
unitSystem: default
- type: Feature
geometry:
type: Point
coordinates:
- -118.358333
- 34.200555
properties:
forecastType: FM
flightCategory: VFR
visibility: 7
rawTxt: FM072000 17009KT P6SM SKC
ceilingCode: SKC
stationId: KBUR
ogcFeatureId: 7
forecastNumber: 2
layerNumber: 0
issueDateTime: '2024-10-07T11:51:00.000Z'
validDateTime: '2024-10-07T20:00:00.000Z'
expirationDateTime: '2024-10-08T04:00:00.000Z'
insertedDateTime: '2024-10-07T11:53:14.884Z'
probability: null
windSpeed: 9
windGust: null
windDirection: 170
flightCode: 1
wmoCode: null
vicinity: null
cloudHeight: null
unitSystem: default
- type: Feature
geometry:
type: Point
coordinates:
- -118.358333
- 34.200555
properties:
forecastType: FM
flightCategory: VFR
visibility: 7
rawTxt: FM071500 15005KT P6SM SKC
ceilingCode: SKC
stationId: KBUR
ogcFeatureId: 8
forecastNumber: 1
layerNumber: 0
issueDateTime: '2024-10-07T11:51:00.000Z'
validDateTime: '2024-10-07T15:00:00.000Z'
expirationDateTime: '2024-10-07T20:00:00.000Z'
insertedDateTime: '2024-10-07T11:53:14.884Z'
probability: null
windSpeed: 5
windGust: null
windDirection: 150
flightCode: 1
wmoCode: null
vicinity: null
cloudHeight: null
unitSystem: default
- type: Feature
geometry:
type: Point
coordinates:
- -118.408055
- 33.9425
properties:
forecastType: FM
flightCategory: IFR
visibility: 3
rawTxt: FM081600 26006KT 3SM BR BKN005
ceilingCode: BKN
stationId: KLAX
ogcFeatureId: 6250
forecastNumber: 7
layerNumber: 0
issueDateTime: '2024-10-07T14:57:00.000Z'
validDateTime: '2024-10-08T16:00:00.000Z'
expirationDateTime: '2024-10-08T18:00:00.000Z'
insertedDateTime: '2024-10-07T14:58:38.405Z'
probability: null
windSpeed: 6
windGust: null
windDirection: 260
flightCode: 3
wmoCode: BR
vicinity: 0
cloudHeight: 500
unitSystem: default
- type: Feature
geometry:
type: Point
coordinates:
- -118.408055
- 33.9425
properties:
forecastType: FM
flightCategory: LIFR
visibility: 0.5
rawTxt: FM080800 VRB03KT 1/2SM FG VV002
ceilingCode: VV
stationId: KLAX
ogcFeatureId: 6251
forecastNumber: 6
layerNumber: 0
issueDateTime: '2024-10-07T14:57:00.000Z'
validDateTime: '2024-10-08T08:00:00.000Z'
expirationDateTime: '2024-10-08T16:00:00.000Z'
insertedDateTime: '2024-10-07T14:58:38.405Z'
probability: null
windSpeed: 3
windGust: null
windDirection: 9999
flightCode: 4
wmoCode: FG
vicinity: 0
cloudHeight: 200
unitSystem: default
- type: Feature
geometry:
type: Point
coordinates:
- -118.408055
- 33.9425
properties:
forecastType: FM
flightCategory: LIFR
visibility: 1
rawTxt: FM080300 26005KT 1SM BR VCFG OVC003
ceilingCode: OVC
stationId: KLAX
ogcFeatureId: 6252
forecastNumber: 5
layerNumber: 0
issueDateTime: '2024-10-07T14:57:00.000Z'
validDateTime: '2024-10-08T03:00:00.000Z'
expirationDateTime: '2024-10-08T08:00:00.000Z'
insertedDateTime: '2024-10-07T14:58:38.405Z'
probability: null
windSpeed: 5
windGust: null
windDirection: 260
flightCode: 4
wmoCode: BR
vicinity: 0
cloudHeight: 300
unitSystem: default
- type: Feature
geometry:
type: Point
coordinates:
- -118.408055
- 33.9425
properties:
forecastType: FM
flightCategory: LIFR
visibility: 1
rawTxt: FM080300 26005KT 1SM BR VCFG OVC003
ceilingCode: OVC
stationId: KLAX
ogcFeatureId: 6253
forecastNumber: 5
layerNumber: 0
issueDateTime: '2024-10-07T14:57:00.000Z'
validDateTime: '2024-10-08T03:00:00.000Z'
expirationDateTime: '2024-10-08T08:00:00.000Z'
insertedDateTime: '2024-10-07T14:58:38.405Z'
probability: null
windSpeed: 5
windGust: null
windDirection: 260
flightCode: 4
wmoCode: FG
vicinity: 1
cloudHeight: 300
unitSystem: default
- type: Feature
geometry:
type: Point
coordinates:
- -118.408055
- 33.9425
properties:
forecastType: FM
flightCategory: IFR
visibility: 3
rawTxt: FM072300 26012KT 3SM BR BKN005
ceilingCode: BKN
stationId: KLAX
ogcFeatureId: 6254
forecastNumber: 4
layerNumber: 0
issueDateTime: '2024-10-07T14:57:00.000Z'
validDateTime: '2024-10-07T23:00:00.000Z'
expirationDateTime: '2024-10-08T03:00:00.000Z'
insertedDateTime: '2024-10-07T14:58:38.405Z'
probability: null
windSpeed: 12
windGust: null
windDirection: 260
flightCode: 3
wmoCode: BR
vicinity: 0
cloudHeight: 500
unitSystem: default
- type: Feature
geometry:
type: Point
coordinates:
- -118.408055
- 33.9425
properties:
forecastType: FM
flightCategory: MVFR
visibility: 5
rawTxt: FM071800 26010KT 5SM HZ SCT007
ceilingCode: SCT
stationId: KLAX
ogcFeatureId: 6255
forecastNumber: 3
layerNumber: 0
issueDateTime: '2024-10-07T14:57:00.000Z'
validDateTime: '2024-10-07T18:00:00.000Z'
expirationDateTime: '2024-10-07T23:00:00.000Z'
insertedDateTime: '2024-10-07T14:58:38.405Z'
probability: null
windSpeed: 10
windGust: null
windDirection: 260
flightCode: 2
wmoCode: HZ
vicinity: 0
cloudHeight: 700
unitSystem: default
- type: Feature
geometry:
type: Point
coordinates:
- -118.408055
- 33.9425
properties:
forecastType: FM
flightCategory: IFR
visibility: 3
rawTxt: FM071700 26006KT 3SM BR BKN005
ceilingCode: BKN
stationId: KLAX
ogcFeatureId: 6256
forecastNumber: 2
layerNumber: 0
issueDateTime: '2024-10-07T14:57:00.000Z'
validDateTime: '2024-10-07T17:00:00.000Z'
expirationDateTime: '2024-10-07T18:00:00.000Z'
insertedDateTime: '2024-10-07T14:58:38.405Z'
probability: null
windSpeed: 6
windGust: null
windDirection: 260
flightCode: 3
wmoCode: BR
vicinity: 0
cloudHeight: 500
unitSystem: default
- type: Feature
geometry:
type: Point
coordinates:
- -118.408055
- 33.9425
properties:
forecastType: TEMPO
flightCategory: LIFR
visibility: 0.25
rawTxt: TEMPO 0715/0717 1/4SM FG VV001
ceilingCode: VV
stationId: KLAX
ogcFeatureId: 6257
forecastNumber: 1
layerNumber: 0
issueDateTime: '2024-10-07T14:57:00.000Z'
validDateTime: '2024-10-07T15:00:00.000Z'
expirationDateTime: '2024-10-07T17:00:00.000Z'
insertedDateTime: '2024-10-07T14:58:38.405Z'
probability: null
windSpeed: 3
windGust: null
windDirection: 9999
flightCode: 4
wmoCode: FG
vicinity: 0
cloudHeight: 100
unitSystem: default
- type: Feature
geometry:
type: Point
coordinates:
- -118.408055
- 33.9425
properties:
forecastType: FM
flightCategory: LIFR
visibility: 0.5
rawTxt: KLAX 071457Z 0715/0818 VRB03KT 1/2SM FG VV002
ceilingCode: VV
stationId: KLAX
ogcFeatureId: 6258
forecastNumber: 0
layerNumber: 0
issueDateTime: '2024-10-07T14:57:00.000Z'
validDateTime: '2024-10-07T15:00:00.000Z'
expirationDateTime: '2024-10-07T17:00:00.000Z'
insertedDateTime: '2024-10-07T14:58:38.405Z'
probability: null
windSpeed: 3
windGust: null
windDirection: 9999
flightCode: 4
wmoCode: FG
vicinity: 0
cloudHeight: 200
unitSystem: default
- type: Feature
geometry:
type: Point
coordinates:
- -118.151388
- 33.8175
properties:
forecastType: FM
flightCategory: LIFR
visibility: 4
rawTxt: FM080500 VRB03KT 4SM BR OVC004
ceilingCode: OVC
stationId: KLGB
ogcFeatureId: 10238
forecastNumber: 4
layerNumber: 0
issueDateTime: '2024-10-07T15:00:00.000Z'
validDateTime: '2024-10-08T05:00:00.000Z'
expirationDateTime: '2024-10-08T12:00:00.000Z'
insertedDateTime: '2024-10-07T15:02:27.398Z'
probability: null
windSpeed: 3
windGust: null
windDirection: 9999
flightCode: 4
wmoCode: BR
vicinity: 0
cloudHeight: 400
unitSystem: default
- type: Feature
geometry:
type: Point
coordinates:
- -118.151388
- 33.8175
properties:
forecastType: FM
flightCategory: VFR
visibility: 7
rawTxt: FM072300 30010KT P6SM SKC
ceilingCode: SKC
stationId: KLGB
ogcFeatureId: 10239
forecastNumber: 3
layerNumber: 0
issueDateTime: '2024-10-07T15:00:00.000Z'
validDateTime: '2024-10-07T23:00:00.000Z'
expirationDateTime: '2024-10-08T05:00:00.000Z'
insertedDateTime: '2024-10-07T15:02:27.398Z'
probability: null
windSpeed: 10
# --- truncated at 32 KB (48 KB total) ---
# Full source: https://raw.githubusercontent.com/api-evangelist/dtn/refs/heads/main/openapi/dtn-taf-api-openapi.yml