Free Jobs API for Builder Roles
Free REST API. No auth required. Base URL: https://jobsbase.io
Quick start
Browse all builder jobs:
curl "https://jobsbase.io/api/v1/jobs" Search for remote founding engineer roles:
curl "https://jobsbase.io/api/v1/jobs?q=founding+engineer&workplace=remote" Filter by salary and visa sponsorship:
curl "https://jobsbase.io/api/v1/jobs?salary_at_least=150000&visa_sponsorship=true&limit=5" Download the daily snapshot of all active builder jobs:
curl "https://jobsbase.io/api/v1/jobs/snapshot?format=jsonl" Search jobs
GET /api/v1/jobs All parameters are optional. Omit q to browse all builder jobs.
Parameters
| Name | Required | Description |
|---|---|---|
q | no | Search query (matches keywords term-by-term across title, company, city, region, country). Omit to browse all jobs. |
type | no | full-time, part-time, contract, freelance, internship (comma-separated) |
workplace | no | remote, hybrid, on-site (comma-separated) |
city | no | City name(s), comma-separated |
state | no | State/province name(s), comma-separated |
country | no | Country code(s) — US, GB, CA, etc. (comma-separated) |
region | no | north_america, latin_america, europe, asia_pacific, middle_east_africa (comma-separated) |
seniority_level | no | internship, entry, mid, senior, lead, executive (comma-separated) |
salary_at_least | no | Minimum annual salary |
salary_at_most | no | Maximum annual salary |
posted_within | no | 24h, 3d, 7d, 14d, 30d |
company | no | Exact company name |
experience_no_more_than | no | Max years of experience required |
education_level | no | high_school, associate, bachelor, master, doctorate |
visa_sponsorship | no | true — only jobs with visa sponsorship |
sort | no | relevance, posted_at (default), salary |
limit | no | Results per page, 1-100 (default 30) |
cursor | no | Cursor from previous response for next page |
Response
{
"jobs": [
{
"id": "abc123",
"title": "Founding Engineer",
"company": "Acme Inc",
"display_location": "San Francisco, CA",
"city": "San Francisco",
"country": "US",
"locations": [
{ "city": "San Francisco", "region": "north_america", "country": "US", "country_name": "United States" }
],
"type": "full-time",
"workplace": "remote",
"seniority_level": "senior",
"salary_min": 150000,
"salary_max": 200000,
"salary_period": "annual",
"currency": "USD",
"experience_min": 3,
"experience_max": 7,
"education_level": "bachelor",
"visa_sponsorship": false,
"skills": "TypeScript, React, Node.js",
"job_url": "https://jobsbase.io/jobs/abc123",
"posted_at": "2026-04-06T12:00:00Z"
}
],
"has_more": true,
"next_cursor": "eyJwIjoiMjAyNi0wNC0wNi..."
} Each job includes a locations array with all work-eligible locations (city, region, country, country_name). Primary location first; empty if fully remote with no geographic restriction.
To paginate, pass next_cursor as the cursor parameter in the next request. Invalid cursors return 400.
Daily snapshot
GET /api/v1/jobs/snapshot Returns a daily cached snapshot of all active builder jobs in stable order (posted_at DESC, id DESC). Useful for bulk syncs and agent ingestion jobs.
Parameters
| Name | Required | Description |
|---|---|---|
format | no | Set to jsonl for newline-delimited JSON. Default is standard JSON. |
JSON response
{
"generated_at": "2026-04-13T00:00:00.000Z",
"schema_version": 1,
"jobs": [
{
"id": "abc123",
"title": "Founding Engineer",
"company": "Acme Inc",
"skills": ["TypeScript", "Svelte"]
}
]
}Get job details
GET /api/v1/jobs/:id Response
Returns the same fields as the search response, plus:
{
"description": "<p>Full job description HTML...</p>",
"region": "north_america",
"country_name": "United States",
"education_field": "Computer Science",
"job_function": "Engineering",
"industries": "Software, SaaS",
"benefits": "Health insurance, 401k, ..."
} Returns 404 if the job is not found.
List filters
GET /api/v1/filters Response
{
"types": ["full-time", "part-time", "contract", ...],
"workplaces": ["remote", "hybrid", "on-site"],
"cities": ["San Francisco", "New York", ...],
"countries": [{ "code": "US", "name": "United States" }, ...],
"seniority_levels": ["entry", "mid", "senior", ...],
"companies": ["Acme Inc", ...],
"education_levels": ["bachelor", "master", ...]
} Use these values to build valid filter parameters for the search endpoint.