chirojobs.com APIchirojobs.com ↗
Access chiropractic job listings, job details, categories, blog posts, and pricing from ChiroJobs.com via a single REST API with 6 endpoints.
curl -X GET 'https://api.parse.bot/scraper/19bcf23b-035b-44fd-ba94-3752e385ef16/list_jobs?page=1&sort=relevance' \ -H 'X-API-Key: $PARSE_API_KEY'
List chiropractic job postings with optional filters for location, category, job type, specialty, date posted, and radius. Returns paginated results sorted by relevance or posting date.
| Param | Type | Description |
|---|---|---|
| page | integer | Page number for pagination. |
| sort | string | Sort order. Accepted values: 'relevance', 'posted_at'. |
| radius | integer | Search radius in miles around the specified location. |
| category | string | Job category filter. Accepted values: 'Chiropractic Doctor', 'Chiropractic Assistant', 'Office Manager', 'Billing Specialist', 'Chiropractic Intern', 'Massage Therapist', 'Franchise Owner', 'Investor', 'Non-Doctor Owner', 'Healthcare'. |
| job_type | string | Job type filter. Accepted values: 'Full-time', 'Part-time', 'Contract'. |
| location | string | Location text filter (City, State, Country format). |
| posted_at | string | Date posted filter in days. Accepted values: '1', '3', '7', '14', '30'. |
| specialty | string | Practice specialty or keyword text filter. |
{
"type": "object",
"fields": {
"jobs": "array of job objects with job_id, slug, title, employer, location, job_type, salary, posted_date, tags, easy_apply, and employer_logo",
"total_on_page": "integer count of jobs returned on this page"
},
"sample": {
"data": {
"jobs": [
{
"url": "https://www.chirojobs.com/jobs/456398503-associate-chiropractor",
"slug": "associate-chiropractor",
"tags": [
"Chiropractic Doctor"
],
"title": "Associate Chiropractor",
"job_id": "456398503",
"salary": "$84k - $155k / year",
"employer": "Morris Chiropractic",
"job_type": "Full-time",
"location": "Painesville, Ohio, United States",
"easy_apply": false,
"posted_date": "5d ago",
"employer_url": "https://www.chirojobs.com/companies/morris-chiropractic-7151951",
"employer_logo": "https://d3535lqr6sqxto.cloudfront.net/employers/OGJ6C6kDumqfuKOsEhLsh4PM0wLi8MCehTbuR21y.png"
}
],
"total_on_page": 15
},
"status": "success"
}
}About the chirojobs.com API
The ChiroJobs API provides structured access to chiropractic-industry job data across 6 endpoints, covering everything from paginated job listings to full job descriptions and employer apply URLs. The list_jobs endpoint accepts filters for location, category, job type, specialty, and posting date, and returns fields like salary, tags, and easy_apply status. Companion endpoints expose blog content and job category IDs for building search or aggregation tools.
Job Listings and Filtering
The list_jobs endpoint returns paginated arrays of chiropractic job postings. Each job object includes job_id, slug, title, employer, location, job_type, salary, posted_date, tags, and easy_apply status. You can filter by category (e.g. 'Chiropractic Doctor', 'Office Manager'), job_type ('Full-time', 'Part-time', 'Contract'), posted_at (1–30 days), specialty keyword, and a geographic location string with an optional radius in miles. Results can be sorted by relevance or posted_at.
Job Details and Application Info
The get_job_detail endpoint takes a job_id and slug (both obtainable from list_jobs) and returns the complete job posting. Response fields include description_html, description_text, apply_url, apply_method (e.g. 'Easy Apply' vs 'External'), and employer_url. This is the endpoint to use when you need full job description text or need to route a candidate to the correct application flow.
Categories and Blog Content
list_job_categories returns all available category name and id pairs, which map directly to the category filter in list_jobs. The blog endpoints — list_blog_posts and get_blog_post — expose paginated post listings (with url, slug, title, and thumbnail) and full post content via content_html and content_text. Use the slug from the listing response to retrieve a specific post.
Pricing Data
get_pricing returns an array of job-posting plan objects from ChiroJobs, each with name, price, and features. This is useful for applications that need to surface employer-facing cost information or compare posting tiers.
- Aggregate chiropractic job openings by location and radius for a specialty healthcare job board
- Monitor new chiropractor and chiropractic assistant postings within the last 7 days using the
posted_atfilter - Build a candidate-facing tool that surfaces
apply_urlandapply_methoddirectly, distinguishing Easy Apply from external redirects - Sync ChiroJobs category IDs via
list_job_categoriesto maintain consistent taxonomy in a recruiting CRM - Pull blog post content via
get_blog_postto feed a chiropractic career resource center withcontent_text - Display employer posting plan options using
get_pricingon a marketplace that compares niche healthcare job boards - Track salary data across chiropractic roles by filtering
list_jobsresults byjob_typeandcategoryover time
| Tier | Price | Credits/month | Rate limit |
|---|---|---|---|
| Free | $0/mo | 100 | 5 req/min |
| Hobby | $30/mo | 1,000 | 20 req/min |
| Developer | $100/mo | 5,000 | 250 req/min |
One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.
Does ChiroJobs have an official public developer API?+
What does `get_job_detail` return that `list_jobs` does not?+
list_jobs returns summary fields like title, employer, salary, and easy_apply status. get_job_detail adds the full description_html and description_text, the direct apply_url, the apply_method indicating whether the application is handled on-site or externally, and the employer_url linking to the employer's profile.Can I filter jobs by both location and a practice specialty keyword at the same time?+
list_jobs accepts location (City, State, Country format), radius in miles, and specialty as independent parameters that can be combined in a single request alongside category, job_type, and posted_at.Does the API return employer contact details or company profiles beyond the employer name?+
employer, employer_url, and apply_url from job detail responses, but does not currently expose structured employer profile pages with contact details, company size, or location data. You can fork this API on Parse and revise it to add an employer profile endpoint if that data is available on the site.Is there a way to retrieve all jobs across all pages in a single request?+
list_jobs is paginated and returns a total_on_page count per page rather than a total job count or cursor. There is no bulk-export or single-call retrieval. You would need to iterate through pages incrementally. The API does not currently expose a total result count across all pages; you can fork it on Parse and revise it to surface that field if the source exposes it.