Open API Access

Search and filter current AI developer jobs through REST and MCP. Public read access is open; employer revenue stays on job posts, promotions, and packages.

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
Read API Docs
Advertiser Packages
$49+ /placement
Paid promotion stays employer-side
  • Boost an existing listing for $49
  • AI Market Demand Pack for $29
  • Standard, featured, and premium job posts
  • Promote existing listings with a one-time boost
  • Company profile claim path
  • Employer analytics and routing
  • Stripe Checkout handoff for paid placements
  • No subscription required for listing promotion
Promote a Listing
See Job Post Pricing

Agent Checkout Contract

Checkout remains focused on paid placements and packages. Agents can quote products without creating Stripe sessions; promoted-listing checkout requires job and buyer metadata before any payment session is created.

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

# Create a checkout handoff only when buyer metadata is present
curl -X POST https://aidevboard.com/api/v1/checkout \
  -H "Content-Type: application/json" \
  -d '{"product_id":"aidevboard_promote_listing","job_id":"JOB_ID","buyer_email":"buyer@example.com"}'

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. Recurring agents can send a free API key for stable identity and keyed hourly throttling.

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 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

FeatureAnonymousFree KeyAdvertiser Package
Rate limitHourly IP throttleKeyed hourly throttleCheckout is payment-scoped
Search & filter jobs
Job details
Company data
Salary trends
MCP server
Stable agent identity
Promoted placement
Stripe checkout
X-API-Tier headeranonymousfreen/a

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 with a developer key
POST/api/v1/checkoutCreate a paid promotion checkout handoff

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