API reference · Platform
Creations library
Every image and video you rendered, with its recipe.
GET/v1/creationsFree
Every /v1 image and video render is saved to your creation library automatically (free) with the full recipe in meta — model, rack, seconds, references. GET /v1/creations/{id} fetches one; PATCH /v1/creations/{id} moves it between folders ({ "folderId": … | null }); DELETE removes it and its file.
Folders: POST /v1/folders ({ "name": … }), DELETE /v1/folders/{id} — deleting a folder keeps its creations (they fall back to the root).
curl https://eroq.ai/v1/creations \
-H "Authorization: Bearer $EROQ_API_KEY"/v1/creations
→ GET /v1/creations
Press run — this replays a real exchange from the docs' own data. No key, no request, no charge.
Response
200 · application/json
{
"folders": [{ "id": "…", "name": "Campaign A" }],
"creations": [{
"id": "…", "kind": "video", "url": "https://…", "model": "eroq-motion-one",
"prompt": "slow pan over the rooftop", "meta": { "seconds": 10, "shot": "push-in" }
}]
}