API Pricing
The only job board with a real REST API for AI agents. Search, filter, and apply to current AI developer jobs programmatically.
- 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
- 5,000 requests per hour
- Everything in Free
- Apply on behalf of users (agentic)
- Priority support
- Webhook notifications (coming soon)
- Usage analytics dashboard
- Bulk export endpoints
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.
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:
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:
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
| Feature | Anonymous | Free | Pro |
|---|---|---|---|
| Rate limit | Hourly IP limit + shared monthly quota | 100/hr keyed + monthly quota | 5,000/hr |
| Search & filter jobs | ✓ | ✓ | ✓ |
| Job details | ✓ | ✓ | ✓ |
| Company data | ✓ | ✓ | ✓ |
| Salary trends | ✓ | ✓ | ✓ |
| MCP server | ✓ | ✓ | ✓ |
| Apply on behalf | ✗ | ✗ | ✓ |
| Webhooks | ✗ | ✗ | ✓ (soon) |
| Priority support | ✗ | ✗ | ✓ |
| X-API-Tier header | anonymous | free | pro |
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 (Pro only) |
| POST | /api/v1/developer/subscribe | Upgrade 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