Findwork API

⭐ Beginner's Pick Jobs / API Key Intermediate HTTPS
Varies by plan (check documentation)

Overview

Findwork is a job board API focused on developer and tech roles, aggregating listings from top tech companies and startups. It requires an API key obtained by registering on their developer page and lets you filter jobs by keyword, location, and type. The API returns clean JSON responses, making it straightforward to integrate into job search tools.

💡

Beginner Tip

Log into findwork.dev and visit the developer section to generate your API key, then include it as a Token in the Authorization header — not as a query parameter.

Available Data

Use case: Integrate job board data into web and mobile applications
Findwork data via REST API
JSON-formatted response data
Requires API key authentication

Example Response

JSON Response
{
  "title": "Software Engineer",
  "company": "Tech Corp",
  "location": "Remote",
  "salary_range": "$120,000 - $180,000",
  "posted_date": "2025-01-10",
  "description": "We are looking for an experienced..."
}

Field Reference

results List of job objects for the current page.
results[].role Job title or role name.
results[].company_name Name of the company posting the job.
results[].location Job location, or empty/remote for distributed roles.
results[].url Direct link to the job posting.
count Total number of results matching the query.

Implementation Example

const url = "https://findwork.dev/developers/";
// Replace headers or query params with the values required by this API.
const response = await fetch(url, {
  headers: {
  "X-API-Key": "YOUR_API_KEY"
  }
});
if (!response.ok) throw new Error(`Request failed: ${response.status}`);
const data = await response.json();
console.log(data);

What Can You Build?

Note: These code examples are AI-generated and unverified. Always refer to the official API documentation for accurate usage.

Common Errors & Troubleshooting

403 Forbidden The Authorization header is missing or uses the wrong format.
Use the format Authorization: Token YOUR_API_KEY (not Bearer). Ensure there is no extra whitespace.
401 Unauthorized The API key has not been generated or has been revoked.
Log into findwork.dev, navigate to the developer section, and generate a new token.
Paginated results cut off Results are paginated and only the first page is returned by default.
Use the next URL field in the response or the ?page= parameter to iterate through all pages of results.

Matrix Score Breakdown

🌐 Reachability 30/30
⚡ Speed 15/20
🔒 Security 15/15
🛠 Developer XP 12/20
✓ Reliability 10/15

Partially tested on Apr 5, 2026

Technical Specifications

Auth API Key
HTTPS REQUIRED
CORS UNKNOWN
Category Jobs
Difficulty Intermediate
Verified: 2026-04-07

Similar APIs

View All →