List Equipment
curl --request GET \
--url https://api.example.com/v1/equipmentimport requests
url = "https://api.example.com/v1/equipment"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.example.com/v1/equipment', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.example.com/v1/equipment",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.example.com/v1/equipment"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.example.com/v1/equipment")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.example.com/v1/equipment")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_bodyEndpoints
List Equipment
Retrieve a paginated list of all equipment in your organization
GET
/
v1
/
equipment
List Equipment
curl --request GET \
--url https://api.example.com/v1/equipmentimport requests
url = "https://api.example.com/v1/equipment"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.example.com/v1/equipment', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.example.com/v1/equipment",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.example.com/v1/equipment"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.example.com/v1/equipment")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.example.com/v1/equipment")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_bodyList Equipment
Returns a paginated list of all equipment (drones, sensors, cameras, etc.) in your organization.Request
curl "https://api.dronelist.io/v1/equipment" \
-H "X-API-Key: dl_your_key_here"
Query parameters
| Parameter | Type | Default | Description |
|---|---|---|---|
page | integer | 1 | Page number (1-indexed) |
limit | integer | 20 | Items per page (max 100) |
Response
{
"success": true,
"data": [
{
"id": "eq_abc123",
"name": "DJI Matrice 350 RTK",
"manufacturer": "DJI",
"model": "Matrice 350 RTK",
"serialNumber": "1ZNBJ4A00KC123456",
"type": "drone",
"category": "multirotor",
"status": "ACTIVE",
"condition": "GOOD",
"registrationNumber": "FA-12345",
"registrationExpiry": "2026-01-15T00:00:00.000Z",
"weight": 6.47,
"specifications": { "maxPayload": "2.73kg", "maxWindResistance": "15m/s" },
"purchaseDate": "2024-06-01T00:00:00.000Z",
"purchaseCost": 13000,
"totalFlights": 142,
"totalFlightHours": 76.5,
"createdAt": "2025-01-15T10:30:00.000Z",
"updatedAt": "2025-03-10T14:22:00.000Z"
}
],
"meta": {
"pagination": {
"page": 1,
"limit": 20,
"total": 5,
"hasMore": false
}
}
}
Required scope
equipment:read
Errors
| Status | Code | Description |
|---|---|---|
401 | UNAUTHORIZED | Missing or invalid API key |
403 | FORBIDDEN | API key lacks equipment:read scope |
500 | INTERNAL_ERROR | Unexpected server error — retry with exponential backoff |
⌘I

