# List SmartRecruiters job taxonomies

List the public industries, job functions, experience levels, and employment types used by SmartRecruiters postings.

- Platform: [SmartRecruiters Jobs](https://docs.upscrape.com/docs/platforms/smart-recruiters)
- Capability ID: `smart-recruiters.job-taxonomies.list`
- Cost: 1 credit per request
- Maximum runtime: 30 seconds
- Execute endpoint: `POST https://data.upscrape.com/execute`

## Request

Use the exact public capability ID in the shared execute envelope.

```bash
curl --request POST \
  --url https://data.upscrape.com/execute \
  --header "Authorization: Bearer YOUR_API_KEY" \
  --header "Content-Type: application/json" \
  --header "Prefer: wait=30" \
  --data '{
  "input": {},
  "capability": "smart-recruiters.job-taxonomies.list"
}'
```

## Input

| Field | Type | Required | Description |
| --- | --- | --- | --- |
| `response_language` | `string` | No | Preferred language for localized taxonomy labels, sent as Accept-Language. |

### Example input

```json
{}
```

## Response

Successful output is returned in `results[0].data`. Raw platform output is intentionally open-ended and may evolve with the upstream source.

### Illustrative sample output

This redacted fixture is an example, not a fixed response schema.

```json
{
  "employment_types": [
    {
      "id": "part-time",
      "label": "Part-time"
    },
    {
      "id": "contract",
      "label": "Contract"
    },
    {
      "id": "permanent",
      "label": "Full-time"
    }
  ],
  "experience_levels": [
    {
      "id": "associate",
      "label": "Associate"
    },
    {
      "id": "director",
      "label": "Director"
    },
    {
      "id": "entry_level",
      "label": "Entry Level"
    }
  ],
  "functions": [
    {
      "id": "accounting_auditing",
      "label": "Accounting/Auditing"
    },
    {
      "id": "administrative",
      "label": "Administrative"
    },
    {
      "id": "advertising",
      "label": "Advertising"
    }
  ],
  "industries": [
    {
      "id": "accounting",
      "label": "Accounting"
    },
    {
      "id": "airlines_aviation",
      "label": "Airlines/Aviation"
    },
    {
      "id": "alternative_dispute_resolution",
      "label": "Alternative Dispute Resolution"
    }
  ]
}
```
### Illustrative output fields

Derived from the sample above for orientation only. These fields are not a fixed response schema.

| Path | Observed type | Example |
| --- | --- | --- |
| `employment_types` | `array` | 3 items |
| `employment_types` | `array` | 3 items |
| `experience_levels` | `array` | 3 items |
| `experience_levels` | `array` | 3 items |
| `functions` | `array` | 3 items |
| `functions` | `array` | 3 items |
| `industries` | `array` | 3 items |
| `industries` | `array` | 3 items |

## Execution behavior

A `200` response completed inline. A `202` response was queued; poll `GET /jobs/{id}` until the job reaches `completed` or `failed`. Use an `Idempotency-Key` when retrying must not create a duplicate logical job.

## Related documentation

- [Authentication](https://docs.upscrape.com/docs/api/authentication)
- [Jobs and results](https://docs.upscrape.com/docs/api/jobs)
- [Errors and retries](https://docs.upscrape.com/docs/api/errors)
- [Idempotency](https://docs.upscrape.com/docs/api/idempotency)
