Jobs API
GET /api/public/jobs/search
Query parameters:
| Param | Type | Description |
|---|---|---|
| q | string | Full-text query. |
| country | string (ISO) | 2-letter country code. |
| remote | boolean | Only fully-remote roles. |
| role | string | Normalized role slug. |
| limit | int (default 20, max 100) | Page size. |
Response
{
"results": [
{ "id": "...", "title": "...", "company": "...", "location": "...",
"url": "https://connectingodds.com/jobs/discover/...", "posted_at": "..." }
],
"total": 1234
}