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-nowcast-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 Aviation Enhanced Flight Hazards (EFH) Nowcast API
description: The DTN Aviation Enhanced Flight Hazards (EFH) API retrieves available turbulence (including Nowcast), icing, high ice water content (HIWC), thunderstorms, ozone, jet stream axis, space weather, and Quantitative Volcanic Ash (QVA) data. Each data type has its own endpoint. Filtering parameters allow to limit data requests in various ways, particularly in limiting the area for which to find data.
version: 1.10.3
servers:
- url: https://aviation.api.dtn.com
security:
- clientCredentials: []
tags:
- name: Nowcast
description: On demand Nowcast via API
paths:
/v1/nowcast/:
get:
tags:
- Nowcast
summary: Get active Nowcast
description: Get all available Nowcast, 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/NowcastSuccess'
'400':
$ref: '#/components/responses/NowcastBadRequest'
'401':
$ref: '#/components/responses/ErrorUnauthorized'
parameters:
- $ref: '#/components/parameters/QueryOffset'
- $ref: '#/components/parameters/QueryLimit'
- $ref: '#/components/parameters/QueryEfhFlightLevel'
- $ref: '#/components/parameters/QueryMinEdr'
- $ref: '#/components/parameters/QueryBbox'
- $ref: '#/components/parameters/QueryPolygon'
- $ref: '#/components/parameters/QueryCircle'
- $ref: '#/components/parameters/QueryCorridor'
- $ref: '#/components/parameters/QueryGeometry'
- $ref: '#/components/parameters/QueryIntersection'
- $ref: '#/components/parameters/QuerySrid'
- $ref: '#/components/parameters/QueryDistanceUnits'
- $ref: '#/components/parameters/NowcastQueryIsValidAt'
- $ref: '#/components/parameters/QueryAllowPartialModelRun'
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
NowcastFeature:
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/NowcastItem'
id:
oneOf:
- type: number
- type: string
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
NowcastFeatureCollection:
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/NowcastFeature'
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'
NowcastItem:
type: object
required:
- validDateTime
- insertedDateTime
- modelDateTime
- edr
- rid
properties:
validDateTime:
type: string
format: date-time
insertedDateTime:
type: string
format: date-time
modelDateTime:
type: string
format: date-time
edr:
type: number
rid:
type: number
responses:
NowcastBadRequest:
description: Bad Request
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
examples:
BadRequest:
$ref: '#/components/examples/NowcastBadRequestResponse'
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
NowcastSuccess:
description: Successful
content:
application/json:
schema:
$ref: '#/components/schemas/NowcastFeatureCollection'
examples:
Success:
$ref: '#/components/examples/NowcastSuccessResponse'
parameters:
QueryMinEdr:
name: minEdr
description: Minimum EDR. Limits to objects whose `edr` value is greater than or equal to this.
in: query
required: false
schema:
type: number
minimum: 0.1
maximum: 0.9
default: 0.1
multipleOf: 0.1
QueryAllowPartialModelRun:
name: allowPartialModelRun
description: Boolean indicator for whether to allow partial model run data to be returned. If false (default), response data will be from latest completely ingested model run. If true, response data will come from the latest model run that can satisfy the set of request parameters even if that model run is not completely ingested and a different request may only be able to pull from earlier model run.
in: query
required: false
schema:
type: boolean
default: false
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
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
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
NowcastQueryIsValidAt:
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. A valid time value being accepted through this parameter does not mean there will be applicable data to return in response. Allowed values relative to the current time vary depending on the data type.
in: query
required: false
schema:
type: string
pattern: ^\d{4}-\d{2}-\d{2} \d{2}:\d{2}:\d{2}
QueryIntersection:
name: intersection
description: 'Boolean indicator for constraining object geometries to spatial filter coverage. If true, object shapes will be truncated at the bounds of the spatial filter. NOTE: Over large areas and if intersecting the antimeridian the results will likely be inaccurate.'
in: query
required: false
schema:
type: boolean
default: false
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
QueryEfhFlightLevel:
name: flightLevel
description: Specific flight level for EFH data. Must use only one of allowed values.
in: query
required: true
schema:
type: string
items:
type: string
enum:
- FL010
- FL030
- FL050
- FL080
- FL100
- FL120
- FL140
- FL160
- FL180
- FL200
- FL220
- FL240
- FL260
- FL270
- FL280
- FL300
- FL320
- FL330
- FL340
- FL350
- FL360
- FL370
- FL380
- FL390
- FL400
- FL410
- FL430
- FL450
- FL530
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
QueryGeometry:
name: geometry
description: Boolean indicator for inclusion of Geometry in response. If false, geometry will be returned empty.
in: query
required: false
schema:
type: boolean
default: true
QuerySrid:
name: srid
description: SRID Identifier for coordinate system for spatial filter coordinates. Default is 4326 (i.e., ordinary longitude & latitude in degrees).
in: query
required: false
explode: false
schema:
type: integer
enum:
- 4326
- 3857
default: 4326
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:
NowcastSuccessResponse:
value:
url: https://aviation.api.dtn.com/v1/nowcast/?flightLevel=fl340&bbox=-100,40,-90,50
type: FeatureCollection
features:
- type: Feature
geometry:
type: Polygon
coordinates:
- - - -92.375
- 48.375
- - -92.375
- 48.125
- - -92.625
- 48.125
- - -92.625
- 48.375
- - -92.375
- 48.375
properties:
flightLevel: fl340
rid: 15220
edr: 0.1
validDateTime: '2025-04-17T21:20:00.000Z'
expirationDateTime: '2025-04-17T22:20:00.000Z'
insertedDateTime: '2025-04-17T20:28:53.304Z'
modelDateTime: '2025-04-17T20:20:00.000Z'
- type: Feature
geometry:
type: Polygon
coordinates:
- - - -92.625
- 48.875
- - -92.625
- 48.375
- - -92.875
- 48.375
- - -92.875
- 48.125
- - -92.625
- 48.125
- - -92.625
- 47.875
- - -92.875
- 47.875
- - -92.875
- 47.625
- - -93.375
- 47.625
- - -93.375
- 47.875
- - -94.125
- 47.875
- - -94.125
- 48.125
- - -93.875
- 48.125
- - -93.875
- 48.375
- - -93.125
- 48.375
- - -93.125
- 48.625
- - -92.875
- 48.625
- - -92.875
- 48.875
- - -92.625
- 48.875
properties:
flightLevel: fl340
rid: 15220
edr: 0.1
validDateTime: '2025-04-17T21:20:00.000Z'
expirationDateTime: '2025-04-17T22:20:00.000Z'
insertedDateTime: '2025-04-17T20:28:53.304Z'
modelDateTime: '2025-04-17T20:20:00.000Z'
- type: Feature
geometry:
type: Polygon
coordinates:
- - - -91.375
- 48.125
- - -91.375
- 47.875
- - -91.625
- 47.875
- - -91.625
- 48.125
- - -91.375
- 48.125
properties:
flightLevel: fl340
rid: 15220
edr: 0.1
validDateTime: '2025-04-17T21:20:00.000Z'
expirationDateTime: '2025-04-17T22:20:00.000Z'
insertedDateTime: '2025-04-17T20:28:53.304Z'
modelDateTime: '2025-04-17T20:20:00.000Z'
- type: Feature
geometry:
type: Polygon
coordinates:
- - - -91.625
- 47.875
- - -91.625
- 47.625
- - -91.875
- 47.625
- - -91.875
- 47.875
- - -91.625
- 47.875
properties:
flightLevel: fl340
rid: 15220
edr: 0.1
validDateTime: '2025-04-17T21:20:00.000Z'
expirationDateTime: '2025-04-17T22:20:00.000Z'
insertedDateTime: '2025-04-17T20:28:53.304Z'
modelDateTime: '2025-04-17T20:20:00.000Z'
- type: Feature
geometry:
type: Polygon
coordinates:
- - - -91.375
- 47.625
- - -91.375
- 47.375
- - -91.625
- 47.375
- - -91.625
- 47.625
- - -91.375
- 47.625
properties:
flightLevel: fl340
rid: 15220
edr: 0.1
validDateTime: '2025-04-17T21:20:00.000Z'
expirationDateTime: '2025-04-17T22:20:00.000Z'
insertedDateTime: '2025-04-17T20:28:53.304Z'
modelDateTime: '2025-04-17T20:20:00.000Z'
- type: Feature
geometry:
type: Polygon
coordinates:
- - - -92.375
- 47.375
- - -92.375
- 47.125
- - -92.875
- 47.125
- - -92.875
- 46.875
- - -93.125
- 46.875
- - -93.125
- 47.375
- - -92.375
- 47.375
properties:
flightLevel: fl340
rid: 15220
edr: 0.1
validDateTime: '2025-04-17T21:20:00.000Z'
expirationDateTime: '2025-04-17T22:20:00.000Z'
insertedDateTime: '2025-04-17T20:28:53.304Z'
modelDateTime: '2025-04-17T20:20:00.000Z'
- type: Feature
geometry:
type: Polygon
coordinates:
- - - -91.625
- 47.125
- - -91.625
- 46.625
- - -92.125
- 46.625
- - -92.125
- 47.125
- - -91.625
- 47.125
properties:
flightLevel: fl340
rid: 15220
edr: 0.1
validDateTime: '2025-04-17T21:20:00.000Z'
expirationDateTime: '2025-04-17T22:20:00.000Z'
insertedDateTime: '2025-04-17T20:28:53.304Z'
modelDateTime: '2025-04-17T20:20:00.000Z'
- type: Feature
geometry:
type: Polygon
coordinates:
- - - -90.125
- 46.875
- - -90.125
- 46.625
- - -90.625
- 46.625
- - -90.625
- 46.875
- - -90.125
- 46.875
properties:
flightLevel: fl340
rid: 15220
edr: 0.1
validDateTime: '2025-04-17T21:20:00.000Z'
expirationDateTime: '2025-04-17T22:20:00.000Z'
insertedDateTime: '2025-04-17T20:28:53.304Z'
modelDateTime: '2025-04-17T20:20:00.000Z'
- type: Feature
geometry:
type: Polygon
coordinates:
- - - -90.625
- 46.625
- - -90.625
- 46.375
- - -90.875
- 46.375
- - -90.875
- 46.625
- - -90.625
- 46.625
properties:
flightLevel: fl340
rid: 15220
edr: 0.1
validDateTime: '2025-04-17T21:20:00.000Z'
expirationDateTime: '2025-04-17T22:20:00.000Z'
insertedDateTime: '2025-04-17T20:28:53.304Z'
modelDateTime: '2025-04-17T20:20:00.000Z'
- type: Feature
geometry:
type: Polygon
coordinates:
- - - -90.875
- 46.625
- - -90.875
- 46.375
- - -90.625
- 46.375
- - -90.625
- 45.875
- - -90.375
- 45.875
- - -90.375
- 45.625
- - -90.875
- 45.625
- - -90.875
- 46.125
- - -91.375
- 46.125
- - -91.375
- 46.375
- - -91.125
- 46.375
- - -91.125
- 46.625
- - -90.875
- 46.625
properties:
flightLevel: fl340
rid: 15220
edr: 0.2
validDateTime: '2025-04-17T21:20:00.000Z'
expirationDateTime: '2025-04-17T22:20:00.000Z'
insertedDateTime: '2025-04-17T20:28:53.304Z'
modelDateTime: '2025-04-17T20:20:00.000Z'
- type: Feature
geometry:
type: Polygon
coordinates:
- - - -90.125
- 46.375
- - -90.125
- 46.125
- - -90.375
- 46.125
- - -90.375
- 46.375
- - -90.125
- 46.375
properties:
flightLevel: fl340
rid: 15220
edr: 0.1
validDateTime: '2025-04-17T21:20:00.000Z'
expirationDateTime: '2025-04-17T22:20:00.000Z'
insertedDateTime: '2025-04-17T20:28:53.304Z'
modelDateTime: '2025-04-17T20:20:00.000Z'
- type: Feature
geometry:
type: Polygon
coordinates:
- - - -93.125
- 46.125
- - -93.125
- 45.875
- - -94.125
- 45.875
- - -94.125
- 46.125
- - -93.125
- 46.125
properties:
flightLevel: fl340
rid: 15220
edr: 0.1
validDateTime: '2025-04-17T21:20:00.000Z'
expirationDateTime: '2025-04-17T22:20:00.000Z'
insertedDateTime: '2025-04-17T20:28:53.304Z'
modelDateTime: '2025-04-17T20:20:00.000Z'
- type: Feature
geometry:
type: Polygon
coordinates:
- - - -90.875
- 46.125
- - -90.875
- 45.875
- - -91.125
- 45.875
- - -91.125
- 46.125
- - -90.875
- 46.125
properties:
flightLevel: fl340
rid: 15220
edr: 0.1
validDateTime: '2025-04-17T21:20:00.000Z'
expirationDateTime: '2025-04-17T22:20:00.000Z'
insertedDateTime: '2025-04-17T20:28:53.304Z'
modelDateTime: '2025-04-17T20:20:00.000Z'
- type: Feature
geometry:
type: Polygon
coordinates:
- - - -90.375
- 46.125
- - -90.375
- 45.875
- - -90.625
- 45.875
- - -90.625
- 46.125
- - -90.375
- 46.125
properties:
flightLevel: fl340
rid: 15220
edr: 0.1
validDateTime: '2025-04-17T21:20:00.000Z'
expirationDateTime: '2025-04-17T22:20:00.000Z'
insertedDateTime: '2025-04-17T20:28:53.304Z'
modelDateTime: '2025-04-17T20:20:00.000Z'
- type: Feature
geometry:
type: Polygon
coordinates:
- - - -93.875
- 45.875
- - -93.875
- 45.625
- - -94.125
- 45.625
- - -94.125
- 45.875
- - -93.875
- 45.875
properties:
flightLevel: fl340
rid: 15220
edr: 0.2
validDateTime: '2025-04-17T21:20:00.000Z'
expirationDateTime: '2025-04-17T22:20:00.000Z'
insertedDateTime: '2025-04-17T20:28:53.304Z'
modelDateTime: '2025-04-17T20:20:00.000Z'
- type: Feature
geometry:
type: Polygon
coordinates:
- - - -93.625
- 45.875
- - -93.625
- 45.625
- - -93.875
- 45.625
- - -93.875
- 45.875
- - -93.625
- 45.875
properties:
flightLevel: fl340
rid: 15220
edr: 0.5
validDateTime: '2025-04-17T21:20:00.000Z'
expirationDateTime: '2025-04-17T22:20:00.000Z'
insertedDateTime: '2025-04-17T20:28:53.304Z'
modelDateTime: '2025-04-17T20:20:00.000Z'
- type: Feature
geometry:
type: Polygon
coordinates:
- - - -93.125
- 45.875
- - -93.125
- 45.625
- - -93.375
- 45.625
- - -93.375
- 45.875
- - -93.125
- 45.875
properties:
flightLevel: fl340
rid: 15220
edr: 0.5
validDateTime: '2025-04-17T21:20:00.000Z'
expirationDateTime: '2025-04-17T22:20:00.000Z'
insertedDateTime: '2025-04-17T20:28:53.304Z'
modelDateTime: '2025-04-17T20:20:00.000Z'
- type: Feature
geometry:
type: Polygon
coordinates:
- - - -92.875
- 45.875
- - -92.875
- 45.125
- - -93.125
- 45.125
- - -93.125
- 45.875
- - -92.875
- 45.875
properties:
flightLevel: fl340
rid: 15220
edr: 0.1
validDateTime: '2025-04-17T21:20:00.000Z'
expirationDateTime: '2025-04-17T22:20:00.000Z'
insertedDateTime: '2025-04-17T20:28:53.304Z'
modelDateTime: '2025-04-17T20:20:00.000Z'
- type: Feature
geometry:
type: Polygon
coordinates:
- - - -93.375
- 45.875
- - -93.375
- 45.625
- - -93.125
- 45.625
- - -93.125
- 45.375
- - -93.375
- 45.375
- - -93.375
- 44.875
- - -93.625
- 44.875
- - -93.625
- 45.375
- - -93.875
- 45.375
- - -93.875
- 45.625
- - -93.625
- 45.625
- - -93.625
- 45.875
- - -93.375
- 45.875
properties:
flightLevel: fl340
rid: 15220
edr: 0.2
validDateTime: '2025-04-17T21:20:00.000Z'
expirationDateTime: '2025-04-17T22:20:00.000Z'
insertedDateTime: '2025-04-17T20:28:53.304Z'
modelDateTime: '2025-04-17T20:20:00.000Z'
- type: Feature
geometry:
type: Polygon
coordinates:
- - - -94.375
- 45.375
- - -94.375
- 45.125
- - -94.625
- 45.125
- - -94.625
- 45.375
- - -94.375
- 45.375
properties:
flightLevel: fl340
rid: 15220
edr: 0.2
validDateTime: '2025-04-17T21:20:00.000Z'
expirationDateTime: '2025-04-17T22:20:00.000Z'
insertedDateTime: '2025-04-17T20:28:53.304Z'
modelDateTime: '2025-04-17T20:20:00.000Z'
- type: Feature
geometry:
type: Polygon
coordinates:
- - - -93.875
- 45.375
- - -93.875
- 45.125
- - -94.125
- 45.125
- - -94.125
- 45.375
- - -93.875
- 45.375
properties:
flightLevel: fl340
rid: 15220
edr: 0.7
validDateTime: '2025-04-17T21:20:00.000Z'
expirationDateTime: '2025-04-17T22:20:00.000Z'
insertedDateTime: '2025-04-17T20:28:53.304Z'
modelDateTime: '2025-04-17T20:20:00.000Z'
- type: Feature
geometry:
type: Polygon
coordinates:
- - - -93.625
- 45.375
- - -93.625
- 44.875
- - -93.875
- 44.875
- - -93.875
- 45.375
- - -93.625
- 45.375
properties:
flightLevel: fl340
rid: 15220
edr: 0.3
validDateTime: '2025-04-17T21:20:00.000Z'
expirationDateTime: '2025-04-17T22:20:00.000Z'
insertedDateTime: '2025-04-17T20:28:53.304Z'
modelDateTime: '2025-04-17T20:20:00.000Z'
- type: Feature
geometry:
type: Polygon
coordinates:
- - - -93.125
- 45.375
- - -93.125
- 45.125
- - -93.375
- 45.125
- - -93.375
- 45.375
- - -93.125
- 45.375
properties:
flightLevel: fl340
rid: 15220
edr: 0.5
validDateTime: '2025-04-17T21:20:00.000Z'
expirationDateTime: '2025-04-17T22:20:00.000Z'
insertedDateTime: '2025-04-17T20:28:53.304Z'
modelDateTime: '2025-04-17T20:20:00.000Z'
- type: Feature
geometry:
type: Polygon
# --- truncated at 32 KB (64 KB total) ---
# Full source: https://raw.githubusercontent.com/api-evangelist/dtn/refs/heads/main/openapi/dtn-nowcast-api-openapi.yml