Discover/chirojobs.com API
live

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.

Endpoints
6
Updated
14d ago
Try it
Page number for pagination.
Sort order. Accepted values: 'relevance', 'posted_at'.
Search radius in miles around the specified location.
Job category filter. Accepted values: 'Chiropractic Doctor', 'Chiropractic Assistant', 'Of
Job type filter. Accepted values: 'Full-time', 'Part-time', 'Contract'.
Location text filter (City, State, Country format).
Date posted filter in days. Accepted values: '1', '3', '7', '14', '30'.
Practice specialty or keyword text filter.
api.parse.bot/scraper/19bcf23b-035b-44fd-ba94-3752e385ef16/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Use it in your codegrab a free API key at signup
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'
All endpoints · 6 totalclick to expand

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.

Input
ParamTypeDescription
pageintegerPage number for pagination.
sortstringSort order. Accepted values: 'relevance', 'posted_at'.
radiusintegerSearch radius in miles around the specified location.
categorystringJob category filter. Accepted values: 'Chiropractic Doctor', 'Chiropractic Assistant', 'Office Manager', 'Billing Specialist', 'Chiropractic Intern', 'Massage Therapist', 'Franchise Owner', 'Investor', 'Non-Doctor Owner', 'Healthcare'.
job_typestringJob type filter. Accepted values: 'Full-time', 'Part-time', 'Contract'.
locationstringLocation text filter (City, State, Country format).
posted_atstringDate posted filter in days. Accepted values: '1', '3', '7', '14', '30'.
specialtystringPractice specialty or keyword text filter.
Response
{
  "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.

Common use cases
  • 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_at filter
  • Build a candidate-facing tool that surfaces apply_url and apply_method directly, distinguishing Easy Apply from external redirects
  • Sync ChiroJobs category IDs via list_job_categories to maintain consistent taxonomy in a recruiting CRM
  • Pull blog post content via get_blog_post to feed a chiropractic career resource center with content_text
  • Display employer posting plan options using get_pricing on a marketplace that compares niche healthcare job boards
  • Track salary data across chiropractic roles by filtering list_jobs results by job_type and category over time
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000250 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.

Frequently asked questions
Does ChiroJobs have an official public developer API?+
ChiroJobs does not publish an official developer API or documented public data access program. This Parse API is the available programmatic option for accessing job listings, categories, blog content, and pricing from the site.
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?+
Yes. 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?+
The API returns 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.
Page content last updated . Spec covers 6 endpoints from chirojobs.com.
Related APIs in JobsSee all →
nvidia.com API
nvidia.com API
devex.com API
Search and explore global development opportunities including tenders, grants, job postings, news, organizations, and events all in one place. Find funding details, discover career opportunities, and stay updated on international development initiatives through a single integrated platform.
metacareers.com API
Search and browse Meta job openings across all departments and locations. Filter by keyword, experience level, or role category — including University Graduate and AR/VR specializations — and retrieve comprehensive details for each listing, including job description, requirements, salary range, and application link.
amazon.jobs API
Search and browse Amazon job openings by keywords, location, and category, then view detailed information about specific positions. Filter results across multiple job categories and locations with easy pagination.
cursor.directory API
Search and discover AI cursor rules, MCP servers, and job listings organized by category to enhance your development workflow. Browse detailed information about each rule and server to find the tools and configurations that best fit your needs.
airtasker.com API
Search and browse Airtasker tasks by location, category, price, and keywords, then access detailed task information and user profiles. Get location suggestions and category recommendations to discover available work and service opportunities in your area.
104.com.tw API
Search for jobs across Taiwan's largest job board and retrieve detailed job listings including descriptions, requirements, and company information. Find the right career opportunities by browsing thousands of positions or searching for specific roles that match your skills and interests.
naukri.com API
naukri.com API