AirHub API
  1. Check
AirHub API
  • Introduction
  • Authorization
    • Overview
    • Get Oauth Token
      POST
  • Advisories
    • Advisory
      POST
    • Get Advisories BBox
      GET
    • Get Advisories GeoJSON
      POST
  • Briefing
    • Overview
    • B4UFLY
      • What Is B4UFLY
      • The API Basics
      • Location vs Area
      • v1
        • B4UFLY Briefing by Area v1
        • B4UFLY Briefing by Location v1
      • v2
        • What's New in v2
        • B4UFLY Briefing by Area v2
        • B4UFLY Briefing by Location v2
  • LAANC SDSP
    • Overview
    • ASL Operations
      • List Operations
      • Create Operation
      • Get Operation
      • Delete Operation
      • Update Operation
    • LAANC Operations
      • Get Operation
      • Delete Operation
      • Create Operation
      • Update Operation
    • LAANC Authorizations
      • Rescinded and Invalid Operations
      • Submit Authorization
      • Get Authorization
      • Cancel Authorization
      • Cancel Invalid Authorization
      • Close Authorization
      • Acknowledge Rescinded Authorization
    • Operation v2
      POST
    • Create Ephemeral Operations
      POST
  • Risk
    • Get Hazard
      POST
    • Get Hazard Ground Type
      POST
    • Get Hazard Ground Risk
      POST
  • Aviation
    • Aviation
      POST
  • Surface
    • Overview
    • Suitability
      POST
    • Classification Surface
      POST
    • Surface v2 GeoJSON
      POST
    • Surface v2 Hexbin
      POST
  • Route
    • Route v2
  • Check
    • Check Airspace
      POST
    • Get Status
      GET
  • Elevation - NEW
    • Get List
  • Map Vector Tiles - NEW
    • Overview
    • Styled Tiles
    • Vector Tile
  • Flight
    • Get Flight Last Position QUERY
    • Get Flight Last Position INFO
  • Data Notification Subscribers
    • Get List
  1. Check

Check Airspace

Deprecated
Sandbox
https://airhub-api-sandbox.airspacelink.com
Sandbox
https://airhub-api-sandbox.airspacelink.com
POST
/v1/check/airspace
Last modified:2024-05-17 17:26:42
Scope: 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

Header Params

Body Params application/json

Example
{
    "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

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://airhub-api-sandbox.airspacelink.com/v1/check/airspace' \
--header 'Authorization: ' \
--header 'Content-Type: application/json;charset=UTF-8' \
--data-raw '{
    "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"
}'

Responses

🟢200200 Response
application/json
Body

Example
{
    "statusCode": 200,
    "message": "success",
    "data": {
        "controlled": false,
        "enabled": false,
        "restricted": false
    }
}
Modified at 2024-05-17 17:26:42
Previous
Route v2
Next
Get Status
Built with