Skip to main content
GET
/
api
/
apps
List available apps
curl --request GET \
  --url https://app.uselamina.ai/api/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
    }
  ]
}
Returns the apps your workspace can run, plus public apps available across Lamina. Use this endpoint first when your integration needs to discover apps dynamically.

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[]