GET /companies
GET
/companiesList all companies with job counts.
Query Parameters
| Parameter | Type | Description |
|---|---|---|
min_jobs | number | Minimum job count (default 1) |
limit | number | Max results (default 50, max 100) |
offset | number | Pagination 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
}
}