The unique identifier of your company
Query Parameters
Filter apps by project ID
Filter apps by environment (“development” or “production”)
Maximum number of apps to return
Number of apps to skip for pagination
Response
Indicates if the request was successful
A message describing the result of the operation
Array of app objects
Unique identifier for the app
Description of the app (if provided)
Environment of the app (“development” or “production”)
Timestamp when the app was created
Timestamp when the app was last updated
Response Example
{
"success": true,
"message": "Apps retrieved successfully",
"data": [
{
"id": "app_01JT38AK6GH3VXP2PPH5BTF36X",
"name": "second app",
"description": "",
"environment": "development",
"createdAt": "2025-04-30T11:46:45.092Z",
"updatedAt": "2025-04-30T11:46:45.092Z"
},
{
"id": "app_01JSZ1B53E22QS6TA3441ZTSFS",
"name": "Production App",
"description": "Production app",
"environment": "production",
"createdAt": "2025-04-28T20:27:45.648Z",
"updatedAt": "2025-04-28T20:27:45.648Z"
}
]
}