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"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 filtersGET
/v1/jobs/:idGet job detailsGET
/v1/companiesList companiesGET
/v1/companies/:idCompany profileGET
/v1/skillsSkills taxonomyGET
/v1/locationsLocation searchGet 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.