API Reference
API Reference
Integrate Titlize into your apps — image generation, token management, and the assistant connector.
1 min read
The Titlize API lets you generate titled images, manage API tokens, and read your usage programmatically. Everything is a simple HTTPS request authenticated with a bearer token.
Base URL#
Plain Text
https://api.titlize.comWhat's covered#
- Authentication — create an API token, send it with each request, and handle rate limits.
- Endpoints — the full reference:
image generation (
POST /generate), token management (create, list, revoke, and validate tokens), listing images, and usage. - Assistant connector (MCP) — drive Titlize from Claude Code, Cursor, and other AI assistants.
Quick example#
Generate an image with a single POST to /generate:
Bash
1 curl -X POST https://api.titlize.com/generate \ 2 -H "Authorization: Bearer your_api_token" \ 3 -F "[email protected]" \ 4 -F "title=Ten ways to make your writing land" \ 5 -F "template=bottom-left"
The response includes the generated image URL. See the Endpoints reference for every parameter, aspect ratio, and file format.