Skip to content

List applications

GET
/api/v1/applications
curl --request GET \
--url 'http://localhost:3000/api/v1/applications?search=mosquitto&category=IoT&vendor=Eclipse%20Foundation&deploymentProfile=DOCKER_COMPOSE&availability=AVAILABLE&limit=20&offset=0&sortBy=name&sortOrder=asc' \
--header 'X-API-Key: <X-API-Key>'

Retrieves a paginated list of applications with optional filtering by category, vendor, and deployment profile.

search
string
Example
mosquitto

Search term to filter applications by name, description, or vendor

category
string
Example
IoT

Filter by category

vendor
string
Example
Eclipse Foundation

Filter by vendor

deploymentProfile
string
Allowed values: DOCKER_COMPOSE HELM K8S_MANIFEST PODMAN

Filter by deployment profile type

availability
string
Allowed values: AVAILABLE SOURCE_UNAVAILABLE

Filter by availability status

limit
number
default: 20 >= 1

Maximum number of results to return

offset
number
0

Number of results to skip

cursor
string

Cursor for pagination

sortBy
string
Allowed values: name updatedAt createdAt

Field to sort by

sortOrder
string
Allowed values: asc desc

Sort order

List of applications retrieved successfully

Media type application/json
object
data
required

List of applications

Array<object>
object
id
required

Unique identifier for the application package

string
organizationId
required

Organization that owns this application

string
name
required

Application name

string
description

Application description

string
descriptionMarkdown

Detailed markdown description of the application

string
releaseNotes

Release notes for the current version

string
descriptionFile

URL or path to detailed description file (Markdown)

string
releaseNotesFile

URL or path to release notes file (Markdown or PDF)

string
licenseFile

URL or path to license file (text, Markdown, or PDF)

string
licenseText

Inline license text content

string
vendor

Vendor/author name

string
category

Category classification

string
iconUrl

URL to application icon

string
availability

Application availability status

string
Allowed values: AVAILABLE SOURCE_UNAVAILABLE
metadata
required

Additional metadata

object
versionCount
required

Number of versions available

number
latestVersion

Latest version string

string
createdAt
required

When the package was created

string
updatedAt
required

When the package was last updated

string
latestDescription

Details of the latest version

object
id
required

Unique identifier for the application description

string
applicationPackageId
required

ID of the parent application package

string
applicationPackageName
required

Name of the parent application package

string
version
required

Version string (semver)

string
deploymentProfile
required

Deployment profile type

string
Allowed values: DOCKER_COMPOSE HELM K8S_MANIFEST PODMAN
manifest
required

Full deployment manifest

object
checksumSha256

SHA-256 checksum of the package

string
minMargoVersion

Minimum Margo version required

string
compatibleDevices
required

List of compatible device types/constraints

Array<object>
object
resourceRequirements
required

Resource requirements (CPU, memory, etc.)

object
validated
required

Whether the manifest has been validated

boolean
validationErrors
required

List of validation errors if any

Array<object>
object
availability

Application availability status

string
Allowed values: AVAILABLE SOURCE_UNAVAILABLE
sourceLinks

Source repository links for this version

Array<object>
object
registryType
required

Registry type

string
Allowed values: git oci globalGit globalOci
registryId
required

Registry ID

string
registryName
required

Registry name

string
registryUrl

Registry URL

string
lastSeenAt
required

When the version was last seen in this registry

string
createdAt
required

When this version was created

string
updatedAt
required

When this version was last updated

string
total
required

Total number of applications matching the query

number
hasMore
required

Whether there are more results available

boolean
nextCursor

Cursor for fetching the next page

string
Example
{
"data": [
{
"id": "550e8400-e29b-41d4-a716-446655440000",
"organizationId": "550e8400-e29b-41d4-a716-446655440002",
"name": "Eclipse Mosquitto",
"description": "Lightweight MQTT broker for IoT",
"descriptionMarkdown": "# Mosquitto\n\nLightweight MQTT broker for IoT deployments.",
"releaseNotes": "## Version 2.0.18\n\n- Security fixes\n- Performance improvements",
"descriptionFile": "/api/v1/applications/550e8400.../files/description",
"releaseNotesFile": "/api/v1/applications/550e8400.../files/release-notes",
"licenseFile": "/api/v1/applications/550e8400.../files/license",
"licenseText": "MIT License\n\nCopyright (c) 2024...",
"vendor": "Eclipse Foundation",
"category": "IoT",
"iconUrl": "/api/v1/applications/550e8400.../icon",
"availability": "AVAILABLE",
"versionCount": 3,
"latestVersion": "2.0.18",
"createdAt": "2024-01-15T10:30:00Z",
"updatedAt": "2024-01-15T10:30:00Z",
"latestDescription": {
"id": "550e8400-e29b-41d4-a716-446655440001",
"applicationPackageId": "550e8400-e29b-41d4-a716-446655440000",
"applicationPackageName": "Eclipse Mosquitto",
"version": "2.0.18",
"deploymentProfile": "DOCKER_COMPOSE",
"checksumSha256": "a1b2c3d4e5f6...",
"minMargoVersion": "1.0.0",
"validated": true,
"availability": "AVAILABLE",
"sourceLinks": [
{
"registryType": "git"
}
],
"createdAt": "2024-01-15T10:30:00Z",
"updatedAt": "2024-01-15T10:30:00Z"
}
}
],
"total": 42,
"hasMore": true,
"nextCursor": "eyJpZCI6IjEyMzQ1In0="
}

Unauthorized - Invalid or missing authentication

Forbidden — caller lacks required permission

Service unavailable - Application service is not reachable