Applications API¶
Endpoints for listing and retrieving application information.
List Applications¶
List all applications accessible to the authenticated user.
Query Parameters¶
| Parameter | Type | Description |
|---|---|---|
search |
string | Search by name or description |
tag |
string | Filter by tag |
limit |
number | Maximum items (default: 50, max: 100) |
cursor |
string | Pagination cursor |
Example Request¶
Example Response¶
{
"success": true,
"data": {
"applications": [
{
"applicationId": "my-app",
"name": "My Application",
"description": "A sample application for demonstration",
"isActive": true,
"tags": ["windows", "utility"],
"createdAt": "2024-06-15T10:30:00Z",
"updatedAt": "2025-01-10T14:22:00Z"
}
],
"pagination": {
"hasMore": false,
"nextCursor": null
}
}
}
Get Application¶
Get details for a specific application.
Path Parameters¶
| Parameter | Type | Description |
|---|---|---|
applicationId |
string | The application ID |
Example Request¶
Example Response¶
{
"success": true,
"data": {
"applicationId": "my-app",
"name": "My Application",
"description": "A sample application for demonstration",
"isActive": true,
"tags": ["windows", "utility"],
"createdAt": "2024-06-15T10:30:00Z",
"updatedAt": "2025-01-10T14:22:00Z",
"versionCount": 5
}
}
Error Responses¶
Application Not Found (404)
Get Statistics¶
Get download statistics for an application.
Path Parameters¶
| Parameter | Type | Description |
|---|---|---|
applicationId |
string | The application ID |
Query Parameters¶
| Parameter | Type | Description |
|---|---|---|
version |
string | Filter by specific version |