> ## Documentation Index
> Fetch the complete documentation index at: https://docs.voxmind.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Device

> Retrieve a specific device record by its ID.

## Path Parameters

<ParamField path="orgId" type="string" required>
  Your organisation's unique identifier.
</ParamField>

<ParamField path="deviceId" type="string" required>
  The numeric ID of the device record. Retrieve device IDs from the List Devices endpoint.
</ParamField>

<RequestExample>
  ```bash cURL theme={null}
  curl -X GET https://api.voxmind.ai/organisations/42/devices/501 \
    -H "Authorization: Bearer YOUR_API_TOKEN" \
    -H "Accept: application/json"
  ```
</RequestExample>

<ResponseExample>
  ```json 200 OK theme={null}
  {
    "id": 501,
    "user_id": 1001,
    "fingerprint": "a3f9d2b1c8e74f5a6d0b2c3e1f9a8b7d...",
    "type": 1,
    "last_used": "2025-03-15T14:22:00Z",
    "created_at": "2025-02-10T09:15:00Z",
    "updated_at": "2025-03-15T14:22:00Z"
  }
  ```
</ResponseExample>
