GET /jobs

GET/jobs

List lightweight job cards for discovery with optional filters.

For full descriptions and rich metadata, fetch a specific job from /jobs/:id.

Query Parameters

ParameterTypeDescription
titlestringJob title intent (normalized to category field/role/specialization)
job_titlestringAlias for title
companystringFilter by company name (partial match)
citystringFilter by city (normalized)
locationstringLocation string (normalized to city/state/country)
statestringFilter by state (normalized)
countrystringFilter by country (normalized)
skillsstringComma-separated umbrella skills (auto-mapped)
toolsstringComma-separated tools
technical_skillsstringComma-separated technical skills
soft_skillsstringComma-separated soft skills
visasstringComma-separated visa requirements
education_levelsstringComma-separated education levels
education_majorsstringComma-separated education majors
certificationsstringComma-separated certifications
security_clearancesstringComma-separated security clearances
benefitsstringComma-separated benefits
work_arrangementstringremote, hybrid, or onsite
employment_typestringe.g. full-time, part-time, contract, internship
salary_minnumberMinimum salary
salary_maxnumberMaximum salary
category_fieldstringFilter by normalized category field
category_rolestringFilter by normalized category role
category_specializationstringFilter by category specialization
limitnumberMax results (default 25, max 100)
offsetnumberPagination offset

Example Response

{
  "data": [
    {
      "id": "meta-123456",
      "title": "Senior Software Engineer",
      "company": "Meta",
      "location": {
        "city": ["Menlo Park"],
        "state": ["California"],
        "country": ["United States"],
        "full": "Menlo Park, California, United States"
      },
      "work_arrangement": "hybrid",
      "employment_type": "full-time",
      "salary": {
        "min": 180000,
        "max": 250000,
        "currency": "USD",
        "period": "annual"
      },
      "category": {
        "field": "software engineering",
        "role": "backend engineer",
        "specialization": "platform"
      }
    }
  ],
  "meta": {
    "total": 1523,
    "limit": 25,
    "offset": 0,
    "has_more": true
  }
}