List / search organizations
GET
/organizationsSearch and list organizations (career data).
| Auth | Not required |
|---|
Query parameters
pagenumberPage number (1-based). Default 1
perPagenumberItems per page. Default 20
typestringFilter by organization type (exact match)
searchstringSearch keyword (name / description)
Response
| Field | Type | Description |
|---|---|---|
organizations | Organization[] | Organizations |
pageInfo | object | Pagination info (totalCount / totalPages / page / perPage) |
Request
curl https://api.4s.link/organizations \-H "Authorization: Bearer 4s_at_..."
Example response
{"organizations": [{"id": "o1-...","name": "Acme Inc.","description": "...","websiteUrl": "https://acme.example.com","type": "COMPANY","logoUrl": "https://.../logo.png","slug": "acme","memberCount": 50}],"pageInfo": { "totalCount": 100, "totalPages": 5, "page": 1, "perPage": 20 }}