The ZOOOP REST API lets you generate images, video, and audio programmatically — the same models available in the ZOOOP web app, driven from your own code.
Base URL — every endpoint lives under https://zooop.ai/api/public/v1. The version (v1) is fixed in the path.
How it works — generation is asynchronous. You submit a task, then poll it until it reaches a terminal state:
POST /tasks— submit a generation request and get back ataskId.GET /tasks/{id}— poll untilstatusissucceeded,failed, orcancelled.- Read the result from
outputs[].url.
All responses are JSON. Authentication uses a Bearer API key — see Authentication.