Skip to main content
GET
/
v1
/
templates
/
{id}
Get Template
curl --request GET \
  --url https://app.uselamina.ai/v1/templates/{id} \
  --header 'x-api-key: <api-key>'
{
  "data": {
    "id": "tmpl-product-launch",
    "name": "Product Launch Hero",
    "description": "Create high-impact hero visuals for product launches with lifestyle context and brand-aligned styling",
    "category": "launch",
    "suggestedModalities": [
      "image",
      "video"
    ],
    "suggestedPlatforms": [
      "instagram",
      "facebook"
    ],
    "guidanceData": {
      "promptDirectives": [
        "Emphasize product in natural lifestyle context",
        "Use brand color palette as accent",
        "Include human interaction with product"
      ],
      "negativePrompts": [
        "no plain white backgrounds",
        "no floating/disembodied products",
        "no text overlays"
      ],
      "winningPatterns": [
        "product-in-context",
        "lifestyle imagery",
        "aspirational setting"
      ],
      "testIdeas": [
        "Test studio vs outdoor settings",
        "Test with/without human model"
      ],
      "creativeStructure": null
    },
    "multiAssetComposition": [
      {
        "role": "hero",
        "modality": "image",
        "description": "Primary product hero shot in lifestyle context"
      },
      {
        "role": "detail",
        "modality": "image",
        "description": "Close-up detail shot highlighting key product features"
      },
      {
        "role": "caption",
        "modality": "text",
        "description": "Engaging caption with call-to-action"
      }
    ],
    "isBuiltIn": true
  }
}
Returns full details for a specific content template, including the recommended app, pre-filled inputs, and customizable parameters. Use this to inspect what a template provides before using it as the basis for a content creation request. The response includes enough context for an agent or UI to show the template’s purpose, preview its defaults, and let the user override specific fields.

Authorizations

x-api-key
string
header
required

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

Path Parameters

id
string
required

Template ID (from GET /v1/templates response).

Response

Full template details with guidance data

data
object

Full template details including structured guidance data.