Skip to main content
GET
/
{workspace_id}
/
users
/
{user_id}
/
apps
List user apps
curl --request GET \
  --url https://app.base44.com/api/v1/monitoring/{workspace_id}/users/{user_id}/apps \
  --header 'api_key: <api-key>'
{
  "app_ids": [
    "<string>"
  ],
  "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.

user_id
string
required

User 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.

Response

Successful Response

Simplified user apps response - returns app IDs only.

app_ids
string[]
required

List of app IDs.

pagination
PaginationMetadata · object
required

Pagination metadata.