Check Airspace
DeprecatedPOST
/v1/check/airspaceScope: aviation:read
DEPRECATED
Returns a payload containing properties that inform whether Airspace Authorization is required.
controlled
: Represents airspace that is monitored and managed by air traffic control. If true
, rules implemented by air traffic apply.
enabled
: Applies to controlled grids/areas with altitude ceilings. At times, these grids may be disabled. If true
, the altitude ceilings are in effect and require authorization in accordance with the rules and ceilings. If false
, alternative authorization is likely required. For example, the Drone Zone in the US.
restricted
: Denotes airspace that is subject to limitations or may be prohibited entirely. If true
, drone flights cannot be authorized during a time window or in some cases into perpetuity.
Examples:
- Airspace is uncontrolled and does not require authorization
{ "controlled": false, "enabled": true | false, "restricted": false }
- Airspace is controlled with enabled grids/areas and requires authorization
{ "controlled": true, "enabled": true, "restricted": false }
- Airspace is restricted and drone flights are not allowed
{ "controlled": false, "enabled": false, "restricted": true }
- Airspace is controlled but grids/areas are not enabled and alternative authorization is required
{ "controlled": true, "enabled": false, "restricted": false }
Request
Authorization bearer accessToken
generated in Authorization step
{
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
-112.02512913435557,
43.47753185851303
],
[
-112.02512913435557,
43.47466874495615
],
[
-112.02118361183014,
43.47466874495615
],
[
-112.02118361183014,
43.47753185851303
],
[
-112.02512913435557,
43.47753185851303
]
]
]
},
"startTime": "2024-09-24T14:00:00.00Z",
"endTime": "2024-09-24T15:00:00.00Z"
}
Request samples
Responses
{
"statusCode": 200,
"message": "success",
"data": {
"controlled": false,
"enabled": false,
"restricted": false
}
}