> ## 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

> Retrieve a paginated list of all equipment in your organization

# List Equipment

Returns a paginated list of all equipment (drones, sensors, cameras, etc.) in your organization.

## Request

```bash theme={null}
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

```json theme={null}
{
  "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 |
