Retrieve paginated flight logs for a specific piece of 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.
| Parameter | Type | Description |
|---|---|---|
id | string | Equipment ID (e.g., eq_abc123) |
| Parameter | Type | Default | Description |
|---|---|---|---|
dateFrom | ISO 8601 | — | Filter flights from this date |
dateTo | ISO 8601 | — | Filter flights up to this date |
flightType | string | — | Filter by flight type (COMMERCIAL, RECREATIONAL, TRAINING, MAINTENANCE) |
orderBy | enum | date_desc | Sort order: date_asc, date_desc, duration_asc, duration_desc |
page | integer | 1 | Page number (1-indexed) |
limit | integer | 20 | Items per page (max 100) |
pilotInCommand and project may be null if no pilot or project is associated with the flight.equipment:read
| Status | Code | Description |
|---|---|---|
400 | BAD_REQUEST | Invalid query parameters (e.g., malformed date or invalid orderBy value) |
401 | UNAUTHORIZED | Missing or invalid API key |
403 | FORBIDDEN | API key lacks equipment:read scope |
404 | NOT_FOUND | Equipment not found or belongs to another organization |
500 | INTERNAL_ERROR | Unexpected server error — retry with exponential backoff |