List Flight Logs
Endpoints
List Flight Logs
Retrieve paginated flight logs for a specific piece of equipment
GET
List Flight Logs
List Flight Logs
Returns a paginated list of flight logs for a specific piece of equipment.Request
Path parameters
| Parameter | Type | Description |
|---|---|---|
id | string | Equipment ID (e.g., eq_abc123) |
Query parameters
| 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) |
Response
pilotInCommand and project may be null if no pilot or project is associated with the flight.Required scope
equipment:read
Errors
| 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 |

