Skip to main content
GET
/
v1
/
equipment
/
{id}
Get Equipment Details
curl --request GET \
  --url https://api.example.com/v1/equipment/{id}

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.

Get Equipment Details

Returns the full details for a specific piece of equipment.

Request

curl "https://api.dronelist.io/v1/equipment/eq_abc123" \
  -H "X-API-Key: dl_your_key_here"

Path parameters

ParameterTypeDescription
idstringEquipment ID (e.g., eq_abc123)

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"
  }
}

Required scope

equipment:read

Errors

StatusCodeDescription
401UNAUTHORIZEDMissing or invalid API key
403FORBIDDENAPI key lacks equipment:read scope
404NOT_FOUNDEquipment not found or belongs to another organization
500INTERNAL_ERRORUnexpected server error — retry with exponential backoff