Skip to main content
GET
/
v1
/
apps
List Apps
curl --request GET \
  --url https://app.uselamina.ai/v1/apps \
  --header 'x-api-key: <api-key>'
{
  "data": [
    {
      "appId": "80d4d454-8844-489f-b903-2ad65a414482",
      "name": "test sync",
      "description": null,
      "isPublic": false
    },
    {
      "appId": "483754bf-24c9-48c1-a70e-71d2ff9682fa",
      "name": "Instant Catalog Builder",
      "description": "Generate catalog images and publish to Salesforce.",
      "isPublic": true
    },
    {
      "appId": "3f68debe-df0a-4fc9-bdd3-9d45a4160587",
      "name": "Cartoonify!",
      "description": "Just upload your photo and convert it into a Cartoon of your favorite style!",
      "isPublic": true
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.uselamina.ai/llms.txt

Use this file to discover all available pages before exploring further.

Discover what the Creative Engine can do. Returns apps your workspace can run, plus public apps from other workspaces. Use search to find apps by capability — "catalog", "try on", "video". Each app has a stable input contract, so the same integration code works across all of them. If you’re using POST /v1/content/create, app selection is automatic. Use this endpoint when you want to pick the app yourself.

Authorizations

x-api-key
string
header
required

Workspace API key. Prefix: lma_. Example: lma_abc123...

Query Parameters

Filter apps by name or description (case-insensitive)

limit
integer
default:10

Maximum number of public apps to return (own workspace apps are always included)

Response

List of apps

data
object[]