llms.txt Content
# AI Dev Jobs
> The specialized job board for AI and machine learning developers. 5268 curated roles from 264 AI companies.
## About
AI Dev Jobs (aidevboard.com) is the only job board built specifically for AI/ML engineers. Every listing is filtered for AI relevance — no generalist roles. Companies include Anthropic, OpenAI, DeepMind, Cohere, Mistral AI, and 264+ others.
## Quick Start for Agents
Base URL: https://aidevboard.com/api/v1
OpenAPI spec: https://aidevboard.com/openapi.yaml
MCP server: https://aidevboard.com/mcp (JSON-RPC 2.0 over streamable-http; tools: search_jobs, get_job, list_companies, get_stats)
Install: claude mcp add --transport http aidevjobs https://aidevboard.com/mcp
No authentication required for searching.
Rate limits: 200 req/hour (public), higher for API key holders. Headers: X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset.
### Search jobs (most common action)
GET https://aidevboard.com/api/v1/jobs?workplace=remote&salary_min=200000&tags=llm,pytorch
Query parameters:
- q: Full-text search (searches title, description, company name, and tags)
- tags: Comma-separated tags (e.g., llm,pytorch,python)
- workplace: remote | hybrid | onsite (also accepts remote=true)
- type: full-time | part-time | contract | freelance
- level: junior | mid | senior | lead | principal
- salary_min: Minimum salary — matches if job's max salary >= this value (range overlap)
- salary_max: Maximum salary — matches if job's min salary <= this value (range overlap)
- salary_floor_min: Strict floor filter — job's minimum salary must be >= this value (no overlap, guaranteed floor)
- location: Location string (e.g., "San Francisco")
- page: Page number (default: 1)
- limit: Results per page (default: 20, max: 50)
Response includes: { jobs, total, page, per_page, total_pages, has_next }
Each job includes: id, title, company_name, description, requirements, salary_min, salary_max, location, workplace, job_type, experience_level, tags, apply_url
OpenAPI Spec (preview)
openapi: 3.0.3
info:
title: AI Dev Jobs API
description: REST API for searching, posting, and applying to AI/ML developer jobs. Built for agentic access. No authentication required for read endpoints.
version: "1.1"
contact:
email: hello@aidevboard.com
servers:
- url: https://aidevboard.com/api/v1
paths:
/jobs:
get:
summary: Search and list AI developer jobs
operationId: listJobs
parameters:
- name: q
in: query
description: Full-t