List Agent Releases
GET /agent-releases
Returns a paginated list of published desktop agent releases.
Query Parameters
| Parameter | Type | Default | Description |
|---|---|---|---|
channel | string | stable | Release stream context: stable, latest |
sort_by | string | published_at | Sort field: version, published_at |
sort_order | string | desc | Sort direction: asc, desc |
page_size | integer | 50 | Items per page. Max: 200 |
cursor | string | - | Pagination cursor from a previous response |
Response
| Field | Type | Description |
|---|---|---|
data | AgentRelease[] | Array of release objects |
total_count | integer | Total number of releases matching the current filters |
next_cursor | string | null | Cursor to pass as cursor for the next page. null when on the last page. |
Example Request
curl -X GET "https://api.example.com/v2/agent-releases" \
-H "Authorization: Bearer YOUR_API_TOKEN"
Sort by version ascending
curl -X GET "https://api.example.com/v2/agent-releases?sort_by=version&sort_order=asc" \
-H "Authorization: Bearer YOUR_API_TOKEN"
Example Response
{
"data": [
{
"channel": "stable",
"version": "1.8.3",
"published_at": "2026-02-24T21:23:53.082Z",
"notes_url": "https://github.com/Scalepad/scalepad-agent/releases/tag/v1.8.3",
"artifacts": {
"windows": {
"filename": "ScalepadAgent-1.8.3.msi",
"content_type": "application/octet-stream",
"size_bytes": 12345678,
"sha256": "abcdef1234567890",
"download_url": "/v2/agent-releases/1.8.3/download?platform=windows"
},
"macos": {
"arm64": {
"filename": "ScalepadAgent-1.8.3.pkg",
"content_type": "application/octet-stream",
"size_bytes": 23456789,
"sha256": "123456abcdef7890",
"download_url": "/v2/agent-releases/1.8.3/download?platform=macos&arch=arm64"
},
"x86_64": {
"filename": "ScalepadAgent-1.8.3.pkg",
"content_type": "application/octet-stream",
"size_bytes": 23456780,
"sha256": "7890abcdef123456",
"download_url": "/v2/agent-releases/1.8.3/download?platform=macos&arch=x86_64"
}
}
}
},
{
"channel": "stable",
"version": "1.8.2",
"published_at": "2026-02-10T18:00:00.000Z",
"notes_url": "https://github.com/Scalepad/scalepad-agent/releases/tag/v1.8.2",
"artifacts": {
"windows": {
"filename": "ScalepadAgent-1.8.2.msi",
"content_type": "application/octet-stream",
"size_bytes": 12340000,
"sha256": "fedcba0987654321",
"download_url": "/v2/agent-releases/1.8.2/download?platform=windows"
},
"macos": {
"arm64": {
"filename": "ScalepadAgent-1.8.2.pkg",
"content_type": "application/octet-stream",
"size_bytes": 23450000,
"sha256": "4567890abcdef123",
"download_url": "/v2/agent-releases/1.8.2/download?platform=macos&arch=arm64"
},
"x86_64": {
"filename": "ScalepadAgent-1.8.2.pkg",
"content_type": "application/octet-stream",
"size_bytes": 23440000,
"sha256": "321fedcba0987654",
"download_url": "/v2/agent-releases/1.8.2/download?platform=macos&arch=x86_64"
}
}
}
}
],
"total_count": 2,
"next_cursor": null
}
Empty Result
{
"data": [],
"total_count": 0,
"next_cursor": null
}
Pagination
This endpoint uses cursor-based pagination.
- Omit
cursoron the first request - If
next_cursoris notnull, pass its value ascursoron the next request - Repeat until
next_cursorisnull
Error Responses
| Status | Description |
|---|---|
| 400 | Invalid query parameters |
| 401 | Authentication required |
| 403 | Insufficient permissions |
| 500 | Server error |
Related Endpoints
- Get Latest Agent Release - Resolve the current release for a channel
- Get Agent Release - Fetch one release by version
- Download Agent Artifacts - Redirect to installer artifacts