GET /companies

GET/companies

List all companies with job counts.

Query Parameters

ParameterTypeDescription
min_jobsnumberMinimum job count (default 1)
limitnumberMax results (default 50, max 100)
offsetnumberPagination offset

Example Response

{
  "data": [
    {
      "name": "Meta",
      "logo_url": "https://...",
      "job_count": 245
    },
    {
      "name": "Amazon",
      "logo_url": "https://...",
      "job_count": 189
    }
  ],
  "meta": {
    "total": 32,
    "limit": 50,
    "offset": 0,
    "has_more": false
  }
}