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

> Retrieve details for a specific piece of equipment by ID

# Get Equipment Details

Returns the full details for a specific piece of equipment.

## Request

```bash theme={null}
curl "https://api.dronelist.io/v1/equipment/eq_abc123" \
  -H "X-API-Key: dl_your_key_here"
```

### Path parameters

| Parameter | Type   | Description                      |
| --------- | ------ | -------------------------------- |
| `id`      | string | Equipment ID (e.g., `eq_abc123`) |

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

## Required scope

`equipment:read`

## Errors

| Status | Code             | Description                                              |
| ------ | ---------------- | -------------------------------------------------------- |
| `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 |
