Developers

Workbeam's catalog is open. Free, no API key, attribution appreciated. Use it for integrations, newsletters, backfill, dashboards, and AI tools.

Jobs API

Filterable, paginated, CORS-enabled JSON.

GET https://workbeamhq.com/api/v1/jobs
  ?category=data-ai      # software-engineering, design, sales, …
  &remote=us             # us | eu | global
  &seniority=senior      # junior | mid | senior | lead | staff | principal
  &minSalary=150000      # min advertised max salary (USD/yr)
  &sponsorship=true      # visa-sponsorship roles only
  &q=react               # keyword (title + description)
  &page=1&limit=50       # pagination (limit max 100)

Example response:

{
  "source": "Workbeam",
  "page": 1, "count": 50,
  "jobs": [{
    "slug": "acme-senior-data-scientist-1a2b3c",
    "url": "https://workbeamhq.com/jobs/acme-senior-data-scientist-1a2b3c",
    "applyUrl": "https://boards.greenhouse.io/acme/jobs/123",
    "title": "Senior Data Scientist",
    "company": "Acme", "location": "Remote (US)",
    "remote": true, "remoteScope": "us",
    "category": "data-ai", "seniority": "senior",
    "salaryMin": 170000, "salaryMax": 220000,
    "salaryCurrency": "USD", "salaryPeriod": "YEAR",
    "sponsorship": false, "postedAt": "2026-06-01T00:00:00.000Z"
  }]
}

RSS feeds

Subscribe in any reader, or pipe into a newsletter.

https://workbeamhq.com/feeds/all          # every live remote role
https://workbeamhq.com/feeds/data-ai      # one feed per category
https://workbeamhq.com/feeds/design
https://workbeamhq.com/feeds/sales        # …and so on

Salary & hiring data

https://workbeamhq.com/api/v1/salaries    # percentile pay by category
https://workbeamhq.com/api/v1/signals     # hiring velocity + trends

Embed widget

Drop a live job list onto any site — one script tag, no iframe.

<script src="https://workbeamhq.com/widget.js"
        data-category="data-ai"
        data-limit="8"></script>

MCP server (for AI tools)

Connect Claude, ChatGPT, Cursor, or Windsurf to Workbeam. Tools: search_jobs, match_jobs (semantic profile match), salary_benchmark, and list_filters.

https://workbeamhq.com/api/mcp

Add to your MCP client config:

{
  "mcpServers": {
    "workbeam": { "url": "https://workbeamhq.com/api/mcp" }
  }
}

Terms

Free for non-commercial and commercial use with a link back to Workbeam. Please cache responses (feeds update a few times a day) and don't hammer the API. Jobs are aggregated from public company career pages.

← Back to Workbeam