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

# Get Job Type

> Retrieve a single job type by ID.

Requires an API key with `read_only` or `full_access` scope.

## Path parameters

<ParamField path="jobTypeId" type="string" required>
  The unique identifier of the job type. For predefined types, use the readable
  ID (e.g. `wind_turbine`).
</ParamField>

## Response

<ResponseField name="id" type="string">
  Job type ID.
</ResponseField>

<ResponseField name="name" type="string">
  Display name.
</ResponseField>

<ResponseField name="icon" type="string">
  Icon identifier.
</ResponseField>

<ResponseField name="is_predefined" type="boolean">
  `true` for built-in types, `false` for custom types.
</ResponseField>

<RequestExample>
  ```bash cURL theme={null}
  curl -X GET https://api.dronebundle.com/v1/job-types/wind_turbine \
    -H "Authorization: Bearer v1_your_api_key_here"
  ```
</RequestExample>

<ResponseExample>
  ```json 200 theme={null}
  {
    "id": "wind_turbine",
    "name": "Wind Turbine",
    "icon": "wind",
    "is_predefined": true
  }
  ```
</ResponseExample>

## Errors

**404 Not Found** - Job type not found.

```json theme={null}
{
  "message": "Job Type not found"
}
```
