AeroGCS Enterprise API
  • AeroGCS Enterprise APIs
    • Get All Drones
    • Get All Drones Status
    • Get All Flights
    • Get Flight Logs
    • Get All Projects
    • Get Plans
    • Get Plan Data
    • Start Flight
    • Get End Flight
    • Add Drone
    • Get All Reports
    • Get All Customers
    • Get All Crops
    • Get All Pesticides
    • Add Flight Log
    • Add Offline Flight Logs
Powered by GitBook
On this page
  • Authentication
  • Method
  • HTTP Request
  • HTTP Response
  • Code Snippet
  • API Response
  • API Response Parameter

Was this helpful?

  1. AeroGCS Enterprise APIs

Get All Drones

This API is used to retrieve all registered and unregistered drones.

This API provides programmatic access to information about registered and unregistered assigned drones.

Authentication

To use the API, insert your API key in the Authorization header like this:

Authorization: Bearer <YOUR_API_KEY>

Replace <YOUR_API_KEY> with your AeroGCS API key. Without it, you'll get a 401 Unauthorized error.

Method

GET: Retrieve GCS-Enabled Drones

HTTP Request

https://ags.aeromegh.com/Aeromegh/GCSDrones

HTTP Response

Response Codes Explanation:

Code
Details
Message

200

The request was successful.

"OK"

400

Request parameters missing.

"Request parameters missing"

500

Internal server error.

"Internal server error"

Code Snippet

Examples of how you can call this API using curl, Node.js, and Python

 curl --location 'https://ags.aeromegh.com/Aeromegh/GCSDrones' \
--header 'Authorization: Bearer <API_KEY>'
//Please install 'axios' module first
//Set your API key before making the request
const axios = require('axios');

let config = {
  method: 'get',
  maxBodyLength: Infinity,
  url: 'https://ags.aeromegh.com/Aeromegh/GCSDrones',
  headers: { 
    'Authorization': '<API_KEY>'
  }
};

axios.request(config)
.then((response) => {
  console.log(JSON.stringify(response.data));
})
.catch((error) => {
  console.log(error);
});
//Please install 'requests' package first
//Set your API key before making the request
import requests

url = "https://ags.aeromegh.com/Aeromegh/GCSDrones"

payload = {}
headers = {
  'Authorization': 'Bearer <API_KEY>'
}

response = requests.request("GET", url, headers=headers, data=payload)

print(response.text)

Note: Replace <API_KEY> with the actual API_KEY provided by AeroGCS.

API Response

Example of API Response in JSON format.

        {
          "drones": [
              {
                  "drone_id": "P00001DESKTOP-4R4A4U6E",
                  "drone_name": "DroneD",
                  "userid": "edb1bf33-0a01-4362-8474-e54e97873391",
                  "project": null,
                  "plan": null,
                  "last_keep_alive": null,
                  "last_tele_data": null,
                  "total_flight_time": {
                      "minutes": 41,
                      "seconds": 24,
                      "milliseconds": 181
                  },
                  "last_flight_log": null,
                  "flight_id": null,
                  "stream_key": null,
                  "registered_date": "2023-08-24T13:36:35.451Z",
                  "lease_drone": false,
                  "drone_rent": "0",
                  "dsp_drone_id": null,
                  "uin": null,
                  "id": "edf7cf95-9a09-44b4-b887-cdd3039f91b9"
              },
              {
                  "drone_id": "P00001DESKTOP-A7J4QKQ",
                  "drone_name": "drone29",
                  "userid": "edb1bf33-0a01-4362-8474-e54e97873391",
                  "project": null,
                  "plan": null,
                  "last_keep_alive": null,
                  "last_tele_data": null,
                  "total_flight_time": {},
                  "last_flight_log": null,
                  "flight_id": null,
                  "stream_key": null,
                  "registered_date": "2023-08-29T11:24:22.275Z",
                  "lease_drone": false,
                  "drone_rent": "0",
                  "dsp_drone_id": null,
                  "uin": null,
                  "id": "03063e58-a012-4a91-9b0f-bc2aedc9bf06"
              }
          ],
          "unregisteredAssignedDrones": []
      }

API Response Parameter

The API response contains details about both registered and unregistered assigned drones. Parameters include:

Parameter
Description
Subparameters

drones

An array containing information about registered drones in the system.

-

drone_id

Unique identifier for the drone.

-

drone_name

Name assigned to the drone.

-

userid

Unique identifier for the user associated with the drone.

-

project

Project associated with the drone.

-

plan

Plan associated with the drone.

-

last_keep_alive

Timestamp indicating the last time the drone communicated its status.

-

last_tele_data

Information about the last telemetry data received from the drone, including a message and its type.

- message: Message received from the drone.

- type: Type of telemetry data (e.g., INFO).

total_flight_time

Total duration of flight recorded in minutes, seconds, and milliseconds.

- hours: Total hours of flight.

- minutes: Total minutes of flight.

- seconds: Total seconds of flight.

- milliseconds: Total milliseconds of flight.

last_flight_log

Timestamp of the last recorded flight log.

-

flight_id

Unique identifier for the flight.

-

stream_key

Key for streaming data.

-

registered_date

Timestamp indicating the date and time when the drone was registered.

-

lease_drone

Indicates whether the drone is leased.

-

drone_rent

Rental fee for the drone.

-

dsp_drone_id

Identifier for the drone in the Digital Sky Platform.

-

uin

Unique Identification Number associated with the drone.

-

id

Unique identifier for the drone registration.

-

unregisteredAssignedDrones

An array containing information about unregistered assigned drones.

-

PreviousAeroGCS Enterprise APIsNextGet All Drones Status

Last updated 1 year ago

Was this helpful?