Content
Package content is marketing content from draft to published, on every channel.
Package content is marketing content from draft to published, on every channel.
| Base URL | https://api.hanzo.ai |
| Operations | 6 |
| Auth | Authorization: Bearer $HANZO_API_KEY |
content
POST /v1/content/{doctype}/{name}/transition
Moves one content item to a new lifecycle state and, on the move to published, fans it out to the item's channels. The edge must be legal for the item's current state — an illegal move is refused with 409 — and the status write re-validates it at the storage boundary. Distribution is best effort: its honest state is reported on the result and a distribution failure never rolls the status change back.
| Parameter | In | Type | Required | Description |
|---|---|---|---|---|
doctype | path | string | yes | DocType is the content type to act on, from the path. |
name | path | string | yes | Name is the document to act on, from the path. |
Request body — application/json (required)
| Field | Type | Required | Description |
|---|---|---|---|
doctype | string | — | DocType is the content type to act on, from the path. |
name | string | — | Name is the document to act on, from the path. |
scheduleAt | string | — | ScheduleAt is an ISO-8601 go-live time handed to the channel's own scheduler; "" distributes now. |
to | string | — | To is the lifecycle state to move to. |
GET /v1/content/board
Aggregates the caller org's marketing content across every publishable content type into ONE queue board — the cross-type read the framework's per-DocType list cannot give. It never fails on a partial outage: a content type the org has not installed, or one whose search errors, is skipped and logged rather than failing the whole board.
| Parameter | In | Type | Required | Description |
|---|---|---|---|---|
status | query | string | — | Status keeps only items in one lifecycle state (draft, in_review, approved, queued, published, archived). |
project | query | string | — | Project keeps only items in one brand/site sub-scope. |
doctype | query | string | — | DocType keeps only one content type; omitted, the board spans every publishable type. |
limit | query | integer | — | Limit caps the rows returned, clamped to 1000. |
GET /v1/content/channels
Lists the distribution channels the caller's org has connected — the social integrations a publish can target. A deployment with no distribution edge wired answers 503 rather than an empty list that would read as "no channels".
POST /v1/content/generate
Draft a piece of marketing content and file it in the CMS as a draft.
Answers 201 with the created draft's identity — {doctype, name, status} — and the document itself lands in the CMS through the SAME validate and lifecycle-hook pipeline an ordinary create runs. This is a WRITE, not a preview: there is no dry-run, and every call that succeeds leaves a document behind.
doctype picks which of two generation planes runs, and they are the only two. Campaign and SocialPost are drafted as brand COPY on the platform AI plane (zen5 by default, overridable per request with model or per deployment); Asset is a studio image render the AI plane never sees. Everything else about the call is identical.
MONEY, metered in exactly one place per mode and never both. Copy rides the platform's own inference meter — the org's balance is authorised before the model call and debited at the exact token cost after — so content never re-bills it. A studio render is invisible to that meter, so content is the sole meter for it: the org is gated BEFORE the GPU compute and refused 402 when out of funds or over its spend cap, and the debit is recorded only once the render actually returns, because the billable event is the consumed compute and not the CMS row. project rides the BODY rather than a server-minted identity claim, so it attributes spend but a project-scoped cap stays soft on it — the org is the value that is enforced.
The org is the caller's own, resolved once from the validated principal and never read from the body; a caller without one is refused 403. Status is not the generator's to choose: a generated item is ALWAYS a draft, and the storage-boundary hook enforces that a second time.
It fails closed rather than inventing anything. An unknown content type is 404 and a deployment whose marketing module is not installed is 409 naming the install call. An AI plane or studio that is unconfigured or unreachable, a graph the studio rejects, and a render that does not return in time all degrade to 503 — never fabricated copy, never a fake render. A source_media that fails the SSRF and traversal validator is 400 raised before the billing gate and before the studio is contacted, so a hostile source never costs the caller anything.
GET /v1/content/lifecycle
Returns the ONE marketing-content state machine: the ordered lifecycle states, which state a fresh document starts in, which one is publicly live, and the legal successors of every state. The console builds its board columns and its per-item action buttons from this single answer, so the UI and the write-time enforcement hook can never disagree about what is legal.
POST /v1/content/publish
Publish distributes one CMS content item to the channels recorded on it and returns the honest per-channel outcome. The item names itself — its caption, media and channel list are read from the stored document, not from this request. It is idempotent per channel (a channel already posted for this item is skipped), and a publish that loses the per-item lease to a live publisher answers status "in_progress" having posted nothing.
Request body — application/json (required)
| Field | Type | Required | Description |
|---|---|---|---|
doctype | string | — | |
name | string | — | |
scheduleAt | string | — | "" = now |
How is this guide?