v5

latestOpenAPI 3.1.02026-08-025631,1012.8 MB
Apps

List Apps

List all Apps for this organization.

The response includes max_apps (the tier's Canvas App limit, null = unlimited) so the UI can render usage ("X of N apps used") and gate the create action without a second round-trip.

get/v1/apps

Query parameters

limitinteger
offsetinteger
templatestring nullable

Filter by template type

Filter by template type

slugstring nullable

Exact match on app slug

Exact match on app slug

searchstring nullable

Case-insensitive partial match on app name

Case-insensitive partial match on app name

Response

Paginated list of Apps for this organization

total_countinteger required
limitinteger required
offsetinteger required
max_appsinteger nullable

Maximum Canvas Apps allowed on the caller's tier (Free=1, Pro=10, Enterprise=unlimited). null means unlimited.

Example response

{
  "results": [
    {
      "meta": {
        "title": "My Product Search",
        "description": "Search across 10k+ product images",
        "logo_url": "https://cdn.example.com/logo.png",
        "favicon_url": "https://cdn.example.com/favicon.ico"
      }
    }
  ]
}