# Chirojobs — 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.

> Search and browse chiropractic job listings with detailed information, explore job categories, and access ChiroJobs blog content and pricing—all in one place. Find related positions, compare opportunities, and stay informed with the latest industry insights.

**Category:** Jobs | **Website:** [chirojobs.com/](https://chirojobs.com/) | **Docs:** [parse.bot/marketplace/97c60c4d-965d-4bcd-b2cc-1b9cccd1503d/chirojobs-com-api](https://parse.bot/marketplace/97c60c4d-965d-4bcd-b2cc-1b9cccd1503d/chirojobs-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-chirojobs-com-api-97c60c4d/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_blog_post

Retrieve the full content of a specific blog post by its slug. Returns HTML and plain text versions of the article content.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `slug` | string | Yes | Blog post URL slug from list_blog_posts results. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-chirojobs-com-api-97c60c4d/get_blog_post \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"slug":"<string>"}'
```

### get_job_detail

Retrieve full details for a specific job posting including the full description, employer info, and apply URL. Requires both job_id and slug from list_jobs results to construct the job page URL.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `job_id` | string | Yes | Numeric job ID from list_jobs results. |
| `slug` | string | Yes | Job URL slug from list_jobs results. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-chirojobs-com-api-97c60c4d/get_job_detail \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"job_id":"<string>","slug":"<string>"}'
```

### get_pricing

Get pricing plans for posting jobs on ChiroJobs. Returns plan names, prices, and included features.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-chirojobs-com-api-97c60c4d/get_pricing \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### list_blog_posts

List blog posts from the ChiroJobs blog with pagination. Each post includes a slug that can be used with get_blog_post to retrieve the full content.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `page` | integer | No | Page number for pagination. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-chirojobs-com-api-97c60c4d/list_blog_posts \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"page":"<integer>"}'
```

### list_job_categories

List all available job categories with their internal IDs. Category names returned here can be used as the category filter in list_jobs.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-chirojobs-com-api-97c60c4d/list_job_categories \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### list_jobs

List chiropractic job postings with optional filters for location, category, job type, specialty, date posted, and radius. Returns paginated results. Each job includes an identifier pair (job_id + slug) needed to fetch full details via get_job_detail.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `category` | string | No | Job category filter. |
| `job_type` | string | No | Job type filter. |
| `location` | string | No | Location text filter in City, State, Country format. |
| `page` | integer | No | Page number for pagination. |
| `posted_at` | string | No | Date posted filter in days. |
| `radius` | integer | No | Search radius in miles around the specified location. |
| `sort` | string | No | Sort order for results. |
| `specialty` | string | No | Practice specialty or keyword text filter. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-chirojobs-com-api-97c60c4d/list_jobs \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"category":"<string>","job_type":"<string>","location":"<string>","page":"<integer>","posted_at":"<string>","radius":"<integer>","sort":"<string>","specialty":"<string>"}'
```
