Viral Repurpose API
Take a viral CN post and produce localized derivatives for international platforms.
Endpoints
| Method | Path | Description |
|---|---|---|
| GET | `/api/v1/viral/repurpose` | List jobs |
| POST | `/api/v1/viral/repurpose` | Create job |
| GET | `/api/v1/viral/repurpose/:id` | Detail |
| DELETE | `/api/v1/viral/repurpose/:id` | Cancel |
| POST | `/api/v1/viral/repurpose/:id/publish` | Publish one output |
Lifecycle
PENDING → ANALYZING → TRANSLATING → GENERATING_MEDIA → READY → EXPORTED. Failed jobs land in FAILED.
Every response uses the standard envelope:
{
"success": true,
"data": { /* resource or array */ },
"meta": { "total": 100, "cursor": "...", "hasMore": true },
"error": { "code": "ERROR_CODE", "message": "Human readable" }
}error is omitted on success; meta is omitted when not paginating.
Rate Limits
Subject to the standard 200 req/min/tenant authenticated limit. See [Rate Limits](/docs/api-reference/rate-limits) for full details and the per-endpoint overrides.