NeuralHire Job Listings REST API
The NeuralHire Public API provides programmatic access to all active AI job listings. Use it to syndicate listings, build integrations, or power your own applications. No authentication required for read access.
https://www.neuralhire.ai
None required
60 req / min
/api/v1/jobs— List all active jobsReturns a paginated list of active job listings. Supports filtering by category, location type, job type, and keyword search.
| Param | Type | Required | Description |
|---|---|---|---|
| page | integer | optional | Page number, default 1 |
| limit | integer | optional | Results per page, default 20, max 100 |
| category | string | optional | e.g. ml-engineering, data-science, ai-research |
| locationType | string | optional | remote, hybrid, or onsite |
| jobType | string | optional | full-time, part-time, contract, internship |
| q | string | optional | Keyword search across title, description, and company name |
curl "https://www.neuralhire.ai/api/v1/jobs?category=ml-engineering&locationType=remote&page=1&limit=10"{
"jobs": [
{
"id": 42,
"title": "Senior ML Engineer",
"slug": "senior-ml-engineer-anthropic-2024",
"category": "ml-engineering",
"jobType": "full-time",
"locationType": "remote",
"location": null,
"salaryMin": 200000,
"salaryMax": 280000,
"salaryCurrency": "USD",
"salaryPeriod": "year",
"isHighlighted": false,
"postedAt": "2024-11-01T09:00:00.000Z",
"expiresAt": "2024-12-01T09:00:00.000Z",
"applyUrl": "https://anthropic.com/careers/apply",
"company": {
"name": "Anthropic",
"slug": "anthropic",
"logoUrl": "https://cdn.example.com/logos/anthropic.png",
"location": "San Francisco, CA",
"isVerified": true
}
}
],
"total": 87,
"page": 1,
"limit": 10,
"totalPages": 9
}/api/v1/jobs/:slug— Get a single jobReturns full details for a single job listing by its unique slug.
curl "https://www.neuralhire.ai/api/v1/jobs/senior-ml-engineer-anthropic-2024"{
"id": 42,
"title": "Senior ML Engineer",
"slug": "senior-ml-engineer-anthropic-2024",
"description": "We are looking for a Senior ML Engineer...",
"requirements": "5+ years of experience with PyTorch...",
"benefits": "Competitive salary, equity, health insurance...",
"category": "ml-engineering",
"jobType": "full-time",
"locationType": "remote",
"location": null,
"salaryMin": 200000,
"salaryMax": 280000,
"salaryCurrency": "USD",
"salaryPeriod": "year",
"tags": ["PyTorch", "Transformers", "RLHF"],
"isHighlighted": false,
"viewCount": 1204,
"applyCount": 38,
"postedAt": "2024-11-01T09:00:00.000Z",
"expiresAt": "2024-12-01T09:00:00.000Z",
"applyUrl": "https://anthropic.com/careers/apply",
"company": {
"name": "Anthropic",
"slug": "anthropic",
"description": "AI safety company building reliable AI systems.",
"logoUrl": "https://cdn.example.com/logos/anthropic.png",
"website": "https://anthropic.com",
"location": "San Francisco, CA",
"size": "201-500",
"isVerified": true
}
}| Value | Label |
|---|---|
| ml-engineering | Machine Learning Engineering |
| data-science | Data Science |
| ai-research | AI Research |
| mlops | MLOps & Infrastructure |
| nlp | Natural Language Processing |
| computer-vision | Computer Vision |
| prompt-engineering | Prompt Engineering |
| ai-safety | AI Safety & Alignment |
| generative-ai | Generative AI |
| ai-product | AI Product Management |
| ai-engineering | AI Engineering |
| other-ai | Other AI Roles |
| Status | Meaning |
|---|---|
| 200 | Success |
| 400 | Bad request — invalid query parameter |
| 404 | Job not found |
| 429 | Rate limit exceeded — slow down requests |
| 500 | Internal server error |