For Developers & AI Agents

The Job API Built for AI

REST API + MCP protocol. Search millions of jobs programmatically. Build the next generation of career tools.

curl -H "Authorization: Bearer YOUR_API_KEY" \
  "https://api.bizapply.ai/v1/jobs?q=developer&country=PT&type=remote"
Get Your API Key

REST API

OpenAPI 3.0 with interactive docs

MCP Protocol

Native support for Claude & GPT agents

Webhooks

Real-time job notifications

Fast

<100ms P95 latency globally

Reference

API Endpoints

GET/v1/jobsSearch jobs with filters
GET/v1/jobs/:idGet job details
GET/v1/companiesList companies
GET/v1/companies/:idCompany profile
GET/v1/skillsSkills taxonomy
GET/v1/locationsLocation search

Get Started

Quick Start

curl
curl -H "Authorization: Bearer YOUR_API_KEY" \
  "https://api.bizapply.ai/v1/jobs?q=developer&country=PT&type=remote"
python
import requests

response = requests.get(
    "https://api.bizapply.ai/v1/jobs",
    headers={"Authorization": "Bearer YOUR_API_KEY"},
    params={"q": "developer", "country": "PT", "type": "remote"}
)
jobs = response.json()["items"]
print(f"Found {len(jobs)} jobs")
javascript
const response = await fetch(
  "https://api.bizapply.ai/v1/jobs?q=developer&country=PT&type=remote",
  { headers: { "Authorization": "Bearer YOUR_API_KEY" } }
);
const { items: jobs } = await response.json();
console.log(`Found ${jobs.length} jobs`);

Start building in 60 seconds

Free tier includes 1,000 API calls/month. No credit card required.