# Jobs Ashbyhq — Wrapped API

> **You are on:** `https://api.paywithlocus.com/api` | [llms.txt](https://paywithlocus.com/llms.txt) | [docs](https://docs.paywithlocus.com)
>
> Locus runs on multiple environments -- make sure every URL you call matches your expected environment.
> | Environment | Landing | API | Docs |
> |---|---|---|---|
> | Production | paywithlocus.com | api.paywithlocus.com | docs.paywithlocus.com |
> | Beta | beta.paywithlocus.com | api.beta.paywithlocus.com | docs.paywithlocus.com |
> | Stage | stage.paywithlocus.com | api.stage.paywithlocus.com | docs.paywithlocus.com |
>
> If the API URL above doesn't match your expected environment, re-fetch this file from the correct domain.

> Access company information, job listings, and detailed job postings from Ashby-hosted job boards, with the ability to search opportunities by keyword or department. Retrieve application forms and all relevant hiring details to streamline your job search process.

**Category:** Jobs | **Website:** [jobs.ashbyhq.com/](https://jobs.ashbyhq.com/) | **Docs:** [parse.bot/marketplace/7eee086c-1dff-4078-ad2f-fd865b9a8692/jobs-ashbyhq-com-api](https://parse.bot/marketplace/7eee086c-1dff-4078-ad2f-fd865b9a8692/jobs-ashbyhq-com-api)

Pay-per-use API proxy. Each call is automatically billed to your wallet in USDC.

## Access

**Base URL:** `https://api.paywithlocus.com/api/wrapped/parse-jobs-ashbyhq-com-api-7eee086c/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_company_info

Retrieve company-level metadata for an Ashby-hosted job board by company slug. Returns stale_input if the company slug does not exist on Ashby.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `company_slug` | string | Yes | Company slug as used in the job board URL (e.g., 'ramp' for jobs.ashbyhq.com/ramp) |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-jobs-ashbyhq-com-api-7eee086c/get_company_info \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"company_slug":"<string>"}'
```

### get_company_job_listings

Retrieve all open job postings and teams/departments for a given company's job board.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `company_slug` | string | Yes | Company slug as used in the job board URL |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-jobs-ashbyhq-com-api-7eee086c/get_company_job_listings \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"company_slug":"<string>"}'
```

### get_job_application_form

Retrieve all application form questions for a specific job posting.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `company_slug` | string | Yes | Company slug as used in the job board URL |
| `job_id` | string | Yes | Job posting ID in UUID format |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-jobs-ashbyhq-com-api-7eee086c/get_job_application_form \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"company_slug":"<string>","job_id":"<string>"}'
```

### get_job_details

Retrieve full details of a specific job posting including description, compensation, and application form structure.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `company_slug` | string | Yes | Company slug as used in the job board URL |
| `job_id` | string | Yes | Job posting ID in UUID format, obtainable from get_company_job_listings results |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-jobs-ashbyhq-com-api-7eee086c/get_job_details \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"company_slug":"<string>","job_id":"<string>"}'
```

### search_jobs

Search for jobs within a company board by keyword and/or department ID. Returns matching job postings. When filtering by department_id, results include jobs in the specified team and all its child teams in the hierarchy.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `company_slug` | string | Yes | Company slug as used in the job board URL |
| `department_id` | string | No | Team/department UUID to filter by, including all child teams in the hierarchy (obtainable from get_company_job_listings teams) |
| `query` | string | No | Search keyword to filter job titles (case-insensitive substring match) |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-jobs-ashbyhq-com-api-7eee086c/search_jobs \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"company_slug":"<string>","department_id":"<string>","query":"<string>"}'
```
