AirHub API
  1. Data Notification Subscribers
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
    • Suitability
      POST
    • Classification Surface
      POST
    • Surface v2 GeoJSON
      POST
    • Surface v2 Hexbin
      POST
  • Route
    • Route v2
  • Check
    • Check Airspace
    • Get Status
  • Elevation - NEW
    • Get List
  • Map Vector Tiles - NEW
    • Overview
    • Styled Tiles
    • Vector Tile
  • Koop
    • Get Flight Last Position QUERY
    • Get Flight Last Position INFO
  • Data Notification Subscribers
    • Get List
      GET
  1. Data Notification Subscribers

Get List

Sandbox
https://airhub-api-sandbox.airspacelink.com
Sandbox
https://airhub-api-sandbox.airspacelink.com
GET
/v1/notification/subscriber
New
Last modified:2025-07-09 11:22:42
Scope: elevation:read
Elevation, altitude, and other "z" measurements from different sources (ex. GPS,
digital elevation models) can be measured with different vertical datum
(reference point), resulting in incompatible measurements. UAS regulation uses
"Above Ground Level" for drone heights, which requires establishing ground level.
This data service converts elevation and altitude measurements between common
vertical datum: ellipsoidal (WGS84/common GPS), orthometric (US only -
NAVD88/measurement above geoid), and Above Ground Level (AGL). Above Ground Level
(AGL) is calculated based on the difference between input z value and surface
elevation in compatible datum.
NOTE: This service is only available in the contiguous United Sates.
NOTE: This service is limited to 3600 requests per hour.
Returns a GeoJSON feature collection with requested transformations (see below)
between WGS84, NAVD88, Above Ground Level, or surface only.

Request

Header Params
Authorization
string 
optional
Authorization bearer accessToken
Example:
{{access-token}}
Content-Type
string 
optional
Example:
application/json;charset=UTF-8

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 GET 'https://airhub-api-sandbox.airspacelink.com/v1/notification/subscriber' \
--header 'Authorization: ' \
--header 'Content-Type: application/json;charset=UTF-8'

Responses

🟢200Success
application/json
Body
statusCode
integer 
required
message
string 
required
data
object 
required
type
string 
required
features
array [object {4}] 
required
Example
{
    "statusCode": 200,
    "message": "success",
    "data": {
        "type": "FeatureCollection",
        "features": [
            {
                "id": "0",
                "type": "Feature",
                "properties": {
                    "AGL": 100,
                    "terrainWGS84": 149.2,
                    "zWGS84": 249.2,
                    "units": "m"
                },
                "geometry": {
                    "type": "Point",
                    "coordinates": [
                        -83.04,
                        42.34
                    ]
                }
            }
        ]
    }
}
🟠400Bad Request
🟠404Record Not Found
Modified at 2025-07-09 11:22:42
Previous
Get Flight Last Position INFO
Built with