Reference / Organizations

List organizations (paginated, newest first).

GET /v1/organizations
Secret API key operationId: list

Authorization

Server-to-server. Send a secret key as a Bearer token plus the x-application-id header.

Query parameters

  • search string optional

    Case-insensitive match on name or slug.

  • limit integer<int64> optional

    Page size (default 25, max 100).

  • offset integer<int64> optional

    Row offset (default 0).

Responses

200 Organizations
{
  "data": {
    "limit": 0,
    "offset": 0,
    "organizations": [
      {
        "created_at": null,
        "id": null,
        "member_count": null,
        "name": null,
        "slug": null
      }
    ],
    "total": 0
  },
  "error": {
    "code": "string",
    "message": "string"
  },
  "meta": {
    "timestamp": "string"
  },
  "success": false
}

Request

curl -X GET "http://localhost:8080/v1/organizations" \

Try it

live request
GET http://localhost:8080/v1/organizations

Query parameters