組織一覧・検索

GET/organizations

組織(経歴データ)を検索・一覧取得します。

認証不要

クエリパラメータ

pagenumber

ページ番号(1 始まり)。デフォルト 1

perPagenumber

1 ページあたりの件数。デフォルト 20

typestring

組織タイプで絞り込み(完全一致)

searchstring

検索キーワード(name / description)

レスポンス

フィールド説明
organizationsOrganization[]組織配列
pageInfoobjectページ情報(totalCount / totalPages / page / perPage)
リクエスト
curl https://api.4s.link/organizations \
-H "Authorization: Bearer 4s_at_..."
レスポンス例
{
"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 }
}