Blooio API Reference
Groups

List groups

List all groups for the organization with optional search and pagination.

GET
/groups

Authorization

BearerAuth
AuthorizationBearer <token>

API key authentication. Use your API key as the bearer token.

In: header

Query Parameters

limit?integer

Maximum number of items to return (1-200)

Default50
Range1 <= value <= 200
offset?integer

Number of items to skip

Default0
Range0 <= value
q?string

Search query (matches group name)

sort?string

Sort order

Default"recent"
Value in"recent" | "oldest" | "name_asc" | "name_desc"

Response Body

application/json

application/json

curl -X GET "https://backend.blooio.com/v2/api/groups"
{
  "groups": [
    {
      "group_id": "string",
      "name": "string",
      "chat_guid": "string",
      "member_count": 0,
      "created_at": 0
    }
  ],
  "pagination": {
    "limit": 0,
    "offset": 0,
    "total": 0
  }
}
{
  "error": "string",
  "status": 0
}