API Pricing

The only job board with a real REST API for AI agents. Search, filter, and apply to current AI developer jobs programmatically.

Free
$0 /month
No credit card required
  • 100 requests per hour
  • Keyed monthly usage separate from anonymous quota
  • Search & filter all jobs
  • Company data & profiles
  • Tag browsing & filtering
  • Salary trends & analytics
  • MCP server access
  • Rate limit headers on every response
Get Free API Key

Agent Checkout Contract

API Pro checkout is intentionally gated by a developer API key. Agents can quote the product without creating a Stripe session, then upgrade through the authenticated developer endpoint.

# Quote API Pro without creating a checkout session
curl -X POST https://aidevboard.com/api/v1/quote \
  -H "Content-Type: application/json" \
  -d '{"product_id":"aidevboard_api_pro"}'

# Start the authenticated upgrade path
curl -X POST https://aidevboard.com/api/v1/developer/subscribe \
  -H "X-API-Key: YOUR_KEY"

Quick Start

Two paths — pick one.

Path A: MCP (for AI agents)

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

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

Discovery works without auth. Recurring tools/call usage should send an API key because billable MCP calls share the same monthly quota semantics as REST.

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
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 (free key — 100 req/hr)
curl "https://aidevboard.com/api/v1/jobs?q=ml+engineer&tag=python" \
  -H "X-API-Key: YOUR_KEY"

# 3. Upgrade to Pro (5,000 req/hr)
curl -X POST https://aidevboard.com/api/v1/developer/subscribe \
  -H "X-API-Key: YOUR_KEY"

Feature Comparison

FeatureAnonymousFreePro
Rate limitHourly IP limit + shared monthly quota100/hr keyed + monthly quota5,000/hr
Search & filter jobs
Job details
Company data
Salary trends
MCP server
Apply on behalf
Webhooks✓ (soon)
Priority support
X-API-Tier headeranonymousfreepro

Available Endpoints

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
POST/api/v1/developer/apply/:idApply to a job (Pro only)
POST/api/v1/developer/subscribeUpgrade to Pro tier

Built for AI Agents

AI Dev Jobs is the only job board with a real REST API and MCP server. Your agents can search, filter, and apply to jobs without scraping.

Read the API Docs