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 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
- 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
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.
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:
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:
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
| Feature | Anonymous | Free Key | Advertiser Package |
|---|---|---|---|
| Rate limit | Hourly IP throttle | Keyed hourly throttle | Checkout is payment-scoped |
| Search & filter jobs | ✓ | ✓ | ✓ |
| Job details | ✓ | ✓ | ✓ |
| Company data | ✓ | ✓ | ✓ |
| Salary trends | ✓ | ✓ | ✓ |
| MCP server | ✓ | ✓ | ✓ |
| Stable agent identity | ✗ | ✓ | ✓ |
| Promoted placement | ✗ | ✗ | ✓ |
| Stripe checkout | ✗ | ✗ | ✓ |
| X-API-Tier header | anonymous | free | n/a |
Available Endpoints
| Method | Endpoint | Description |
|---|---|---|
| GET | /api/v1/jobs | Search & filter jobs (q, tag, location, page, per_page) |
| GET | /api/v1/jobs/:id-or-slug | Job detail with full description |
| POST | /api/v1/jobs/match | Semantic job matching |
| GET | /api/v1/tags | All available tags with counts |
| GET | /api/v1/companies | All companies with job counts |
| GET | /api/v1/companies/:slug | Company detail |
| GET | /api/v1/stats | Board statistics |
| GET | /api/v1/salary-trends | Salary data by tag, level, location |
| POST | /api/v1/register | Register for an API key |
| POST | /api/v1/developer/apply/:id | Apply to a job with a developer key |
| POST | /api/v1/checkout | Create 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