Build the future of creative AI
REST Business API for AI media: one integration for dozens of models. Buy API credits, grab a key, and ship.

Official Developer Resources
Canonical documentation and machine-readable files for production integrations, internal tools, and AI assistants.
- Public API documentation — full HTML reference (auth, endpoints, catalog, parameters, errors)
- cliprise-api-catalog.csv — model IDs, fields, tiers, and notes for parsers and spreadsheets
- llms-api.txt — concise Business API guide for LLM citation
- /api/llm-data — structured JSON (platform + Business API facts, links, FAQ snippets)
Developer-First Platform
Everything you need to build AI-powered creative applications
REST Business API
HTTPS JSON on business.api.cliprise.app: start jobs with POST /app/cliprise/generate and read results with GET /app/cliprise/status.
Async by design
Long-running media jobs return a task ID; poll status (HTTP 300 while processing) or use your callBackUrl—always verify completion in production.
Living documentation
Model catalog, parameters, error codes, verification notes, and per-model API credit tables in one place.
Quick Integration
Send a JSON body with your model, callback URL, and input fields. The docs list every supported model and parameter—no guesswork.
Predictable workflow
Accept returns quickly with a task ID; generation time depends on the model and queue, same as in the Cliprise app.
Bearer API keys
Use Authorization: Bearer on generate; status uses your key as a query parameter. Store keys as secrets and rotate them from the dashboard when needed.
const res = await fetch(
"https://business.api.cliprise.app/app/cliprise/generate",
{
method: "POST",
headers: {
Authorization: "Bearer YOUR_CLIPRISE_API_KEY",
"Content-Type": "application/json",
},
body: JSON.stringify({
model: "qwen-image",
callBackUrl: "https://your-server.com/webhook",
input: { prompt: "A serene mountain landscape" },
}),
}
);
const data = await res.json();Integrate Cliprise API into Your Workflow
From API key to production - a visual guide to integrating Cliprise into your applications
What You Get with API Access
🚀 Straightforward REST
Two primary routes—generate and status—with JSON bodies matching the public documentation. Integrate from any server-side stack.
🔒 Keys & HTTPS
Bearer keys on generate, key-in-query on status, TLS-only host. Treat keys as secrets; rotate them from the dashboard when needed.
⚡ Credit-transparent
Every model lists API credit costs in the docs. Purchase packs when you need more balance; usage scales with the jobs you run.
📊 Observable flow
Poll status for explicit states, handle documented error payloads, and optionally pair with your callBackUrl—always confirm completion server-side.
API surface
Everything runs through the documented generate and status routes—pick a model ID and shape your input JSON.
Start a job
POST JSON with model, callBackUrl, and model-specific input.
POST /app/cliprise/generatePoll or download
Pass apiKey and taskId; use download=true for binary output when ready.
GET /app/cliprise/statusImage, video, audio
One catalog covers generators, editors, speech, TTS, and more—each model documents its own input keys.
Browse model list →Callbacks
Supply an HTTPS callBackUrl with each job; the docs note how it is stored and why you should still poll status.
Errors & credits
HTTP and JSON error shapes are documented, including insufficient API credits and invalid model IDs.
Error reference →API credit packs
Buy packs in the app; per-model credit costs are in the docs. Subscription monthly credits are for the Cliprise app, not this API balance.
Pricing FAQ →Integrate from your stack
No required SDK—use curl, fetch, axios, requests, or your HTTP client of choice.
HTTP + JSON
TLS to business.api.cliprise.app with standard headers. Works from servers, workers, and automation tools.
curl · fetch · axios · requests…Guides & reference
User-friendly guide and compact reference with the same technical content: endpoints, examples, and pricing tables.
Open documentationKeys & credits
API keys and API credit packs are managed in the Cliprise app. Buy packs, then route spend through the same model credit tables as in the docs.
See pricing & FAQFrequently Asked Questions
Start building with Cliprise
Get API access and start integrating AI creativity into your applications

