List Apps
GET
/api/apps/list
const url = 'https://example.com/api/apps/list?page=1&page_size=10';const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url 'https://example.com/api/apps/list?page=1&page_size=10' \ --header 'Authorization: Bearer <token>'List all apps with agent linkage info.
Authorizations
Section titled “Authorizations”Parameters
Section titled “Parameters”Query Parameters
Section titled “Query Parameters”Responses
Section titled “Responses”Successful Response
Media typeapplication/json
AppListResponse
object
apps
required
Apps
Array<object>
AppListItemobject
total_count
required
Total Count
integer
page
required
Page
integer
page_size
required
Page Size
integer
total_pages
required
Total Pages
integer
Examplegenerated
{ "apps": [ { "app_name": "example", "app_id": "example", "app_url": "example", "deployment_status": "example", "deployment_status_reason": "example", "runtime_status": "example", "runtime_status_reason": "example", "execution_status": "example", "execution_status_reason": "example", "last_run_id": "example", "last_run_at": "example", "is_active": true, "agent_id": "example", "agent_name": "example", "agent_version": "example", "environment": "example", "agent_endpoint_name": "example", "app_type": "example", "agent_runtime_status": "example", "agent_runtime_message": "example", "agent_linked": true, "agent_alias": "example", "compute_status": {} } ], "total_count": 1, "page": 1, "page_size": 1, "total_pages": 1}Validation Error
Media typeapplication/json
HTTPValidationError
object
detail
Detail
Array<object>
ValidationErrorobject
loc
required
Location
Array
msg
required
Message
string
type
required
Error Type
string
input
Input
ctx
Context
object
Examplegenerated
{ "detail": [ { "loc": [ "example" ], "msg": "example", "type": "example", "input": "example", "ctx": {} } ]}