Open API Access

Search and filter current AI developer jobs through REST and MCP. Candidate and agent access is free; the only commercial path is a verified employer outcome pilot.

Open API
$0 /month
No credit card required
  • Open public read endpoints
  • Hourly abuse throttles instead of monthly usage paywalls
  • Search & filter all jobs
  • Company data & profiles
  • Tag browsing & filtering
  • Salary trends & analytics
  • MCP server access
  • Optional free API keys for stable agent identity
  • Email verification gates applications and interview attestations
Create Candidate Access Read API Docs

Agent outcome contract

Agents can discover the pilot and request an owner activation review. They cannot create a Stripe session, enroll an employer, charge anyone, change ranking, or submit a candidate application.

# Inspect the only commercial product
curl https://aidevboard.com/api/v1/catalog

# Request an owner activation review; this creates no charge
curl -X POST https://aidevboard.com/api/v1/checkout \
  -H "Content-Type: application/json" \
  -d '{"product_id":"aidevboard_verified_interview_pilot","payment_mode":"owner_activation_review"}'

Quick Start

Two paths — pick one.

Path A: MCP (for AI agents)

One-line installer. Wires ADB MCP into Claude Code, Codex CLI, Cursor, Cline, or Continue:

curl -fsSL https://aidevboard.com/install | sh

Discovery and read-oriented tools work without auth. For agent actions, the human candidate can create and verify candidate access; applying still requires explicit authorization for the exact role.

Path B: REST API (for apps + scripts)

Get your API key in 10 seconds. No signup form — just one curl command:

# 1. Register for a free API key; a candidate verification email is sent
curl -X POST https://aidevboard.com/api/v1/register \
  -H "Content-Type: application/json" \
  -d '{"email":"you@example.com","name":"My App"}'

# 2. Search jobs with or without the key
curl "https://aidevboard.com/api/v1/jobs?q=ml+engineer&tag=python" \
  -H "X-API-Key: YOUR_KEY"

Feature Comparison

Swipe horizontally to compare every column.

FeatureAnonymousFree KeyEmployer outcome pilot
Rate limitHourly IP throttleKeyed hourly throttleOwner-reviewed activation
Search & filter jobs
Job details
Company data
Salary trends
MCP server
Stable agent identity
Email-verified candidate actions
Candidate and agent charge$0$0$0
Charge created by API request
X-API-Tier headeranonymousfreen/a

Available Endpoints

Swipe horizontally to read every endpoint detail.

MethodEndpointDescription
GET/api/v1/jobsSearch & filter jobs (q, tag, location, page, per_page)
GET/api/v1/jobs/:id-or-slugJob detail with full description
POST/api/v1/jobs/matchSemantic job matching
GET/api/v1/tagsAll available tags with counts
GET/api/v1/companiesAll companies with job counts
GET/api/v1/companies/:slugCompany detail
GET/api/v1/statsBoard statistics
GET/api/v1/salary-trendsSalary data by tag, level, location
POST/api/v1/registerRegister for an API key
GET/api/v1/developer/verifyVerify candidate email from the one-time link
POST/api/v1/developer/resend-verificationSend a fresh candidate verification link
POST/api/v1/developer/apply/:idConsume an email-verified candidate’s exact compiled-artifact approval
POST/api/v1/checkoutRequest an owner-reviewed Verified Interview Pilot handoff; no automatic charge

Built for AI Agents

AI Dev Jobs exposes a real REST API and MCP server. Agents can search and filter current AI jobs without scraping.

Read the API Docs