List / search organizations

GET/organizations

Search and list organizations (career data).

AuthNot required

Query parameters

pagenumber

Page number (1-based). Default 1

perPagenumber

Items per page. Default 20

typestring

Filter by organization type (exact match)

searchstring

Search keyword (name / description)

Response

FieldTypeDescription
organizationsOrganization[]Organizations
pageInfoobjectPagination 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 }
}