Skip to main content
GET
/
v1
/
equipment
List Equipment
curl --request GET \
  --url https://api.example.com/v1/equipment

Documentation Index

Fetch the complete documentation index at: https://dronelist.io/docs/llms.txt

Use this file to discover all available pages before exploring further.

List 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

ParameterTypeDefaultDescription
pageinteger1Page number (1-indexed)
limitinteger20Items 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

StatusCodeDescription
401UNAUTHORIZEDMissing or invalid API key
403FORBIDDENAPI key lacks equipment:read scope
500INTERNAL_ERRORUnexpected server error — retry with exponential backoff