Skip to main content
GET
/
{workspace_id}
/
users
List users
curl --request GET \
  --url https://app.base44.com/api/v1/monitoring/{workspace_id}/users \
  --header 'api_key: <api-key>'
{
  "users": [
    {
      "user_id": "usr_abc123",
      "email": "[email protected]",
      "seat_type": "pro",
      "created_at": "2024-03-15T10:30:00Z",
      "is_active": true,
      "total_apps": 12,
      "active_last_30d": true,
      "total_message_credits": 1250,
      "total_integration_credits": 340,
      "total_credits": 1590
    }
  ],
  "pagination": {
    "total": 156,
    "limit": 50,
    "has_more": true,
    "next_cursor": "eyJsYXN0X2lkIjoiMTIzIn0="
  }
}

Authorizations

api_key
string
header
required

API key for authentication. Get your API key from Base44 user settings.

Path Parameters

workspace_id
string
required

Workspace ID.

Query Parameters

limit
integer
default:50

Items per page. Max 50.

Required range: 1 <= x <= 50
cursor
string | null

Pagination cursor from previous response.

active_only
boolean
default:false

Filter to users who consumed message credits in the last 30 days.

seat_type
string | null

Filter by subscription tier, such as "starter", "builder", or "pro". If not provided, returns all users.

Response

Successful Response

Paginated list of users.

users
AnalyticsUserRecord · object[]
required

List of users.

pagination
PaginationMetadata · object
required

Pagination metadata.