For the complete documentation index, see llms.txt. This page is also available as Markdown.

Institutional Landings

get

Retrieves a published institutional landing snapshot.

Path parameters
publicSlugstring · min: 3 · max: 120Required

The stable public landing identifier.

Pattern: ^[a-z0-9]+(?:-[a-z0-9]+)*$
Responses
200

Published institutional landing retrieved successfully.

application/json
canonicalUrlstring · uriRequired

The canonical URL for the published landing.

publishedAtstring · date-time · nullableRequired

When the snapshot was published.

get/public/v1/institutional-landings/{publicSlug}
GET /public/v1/institutional-landings/{publicSlug} HTTP/1.1
Host: api.endless.zaia.app
Accept: */*
{
  "canonicalUrl": "https://example.com",
  "publishedAt": "2026-01-01T00:00:00.000Z",
  "snapshot": {
    "branding": {
      "logo": "https://example.com",
      "name": "text"
    },
    "detail": {
      "blocks": [
        {
          "description": "text",
          "title": "text",
          "type": "about",
          "variant": "split",
          "visible": true
        }
      ],
      "brief": {
        "audience": "text",
        "companyName": "text",
        "description": "text",
        "differentiators": [
          "text"
        ],
        "offer": "text",
        "segment": "text",
        "tone": "text"
      },
      "design": {
        "backgroundEffect": "glow",
        "buttonStyle": "pill",
        "density": "balanced",
        "fontPairing": "humanist-sans",
        "radius": "rounded",
        "sectionTreatment": "alternating",
        "visualStyle": "bold"
      },
      "palette": {
        "background": "text",
        "primary": "text",
        "secondary": "text",
        "text": "text"
      },
      "requirements": {
        "additionalInstructions": "text",
        "contentDepth": "balanced",
        "mustInclude": [
          "text"
        ],
        "objective": "text",
        "prohibitedTerms": [
          "text"
        ]
      },
      "schemaVersion": 2,
      "templateId": "ai-first-product"
    }
  }
}

Last updated