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

# Job Boards

> List accepted job boards for job-search filters

List accepted job boards, optionally filtered by name. Options are sorted
alphabetically and contain a display `label` and a search-ready `value`.

## Authentication and credits

Use `Authorization: Bearer YOUR_API_KEY`. An active API key is required. This
endpoint consumes no credits and works with zero or negative balances.

## Query parameters

<ParamField query="q" type="string">
  Optional name filter, up to 200 characters. Matches any part of the name,
  ignoring case and surrounding whitespace. Omit it or pass a blank value to
  return the complete list.
</ParamField>

## Example request

```bash theme={null}
curl 'https://api.sentrion.ai/api/v1/job-boards?q=linkedin' \
  -H 'Authorization: Bearer YOUR_API_KEY'
```

## Response

```json theme={null}
{
  "job_boards": [
    {
      "label": "Linkedin",
      "value": "Linkedin"
    }
  ]
}
```

Pass each selected `value` unchanged in `include_job_boards` or `exclude_job_boards` when searching for jobs.
No matches return an empty `job_boards` array.

## Errors

| Status | Meaning                                     |
| ------ | ------------------------------------------- |
| 403    | Missing, invalid, or inactive API key       |
| 422    | Invalid query parameters                    |
| 503    | Account information temporarily unavailable |

Errors use a `detail` field. Successful responses use the object shown above,
without a `success` or `data` wrapper.
