# ZOOOP > ZOOOP is an AI-native creative platform and filmmaking workstation. Generate > images, video, audio, speech, and music from every top AI model in one > browser-based workspace — through focused generator pages, reusable recipe > templates, or an infinite collaborative canvas. Credit-based and > pay-as-you-go; credits never expire and there is no subscription required. This file follows the `llmstxt.org` convention so language-model agents and AI search engines can understand what ZOOOP offers without crawling HTML. Website: · Model catalog: · Pricing: ## What is ZOOOP ZOOOP brings every leading generative-AI model under one roof so creators don't have to juggle a dozen separate tools and subscriptions. There are three ways to create: - **Generator pages** — a focused page per task (image, video, speech, music…) for when you just need one result. - **Recipe templates & tools** — one-click presets built on top of the models; creators can publish their own and earn from others' usage. - **Generative canvas** — an infinite pan/zoom workspace for storyboarding and chaining shots together, with real-time multiplayer collaboration. ## Capabilities - **Image**: text-to-image, image-to-image, image editing & inpainting, SVG / vector graphics, upscaling, background removal. - **Video**: text-to-video, image-to-video, motion control, first/last-frame interpolation, video extension, video-to-video editing, lip sync, and automatic sound effects & background music. - **Audio**: text-to-speech, voice cloning, sound-effect generation, and music generation. ## Supported models ZOOOP aggregates 70+ models from leading providers. A representative selection: - **Image**: Flux 2 (Pro / Flash), Nano Banana (Pro / 2), Seedream, GPT Image, Recraft (including vector), Grok Imagine. - **Video**: Google Veo 3 / 3.1, Kling (v2.6 / v3), ByteDance Seedance, MiniMax Hailuo, Alibaba Wan, Luma Ray 2, Pika, Vidu, LTX. - **Speech & audio**: ElevenLabs (multilingual v3, sound effects), MiniMax Speech, Qwen TTS, Gemini TTS, Google Lyria, MiniMax Music. The full, always-current catalog — with a dedicated page per model — lives at . ## Pricing - Pay-as-you-go credits. **Credits never expire**, and individuals need no monthly subscription. Free daily login credits are granted on check-in. - The cost of each generation depends on the model and the output (resolution / duration). - Teams get a shared credit pool with per-creator seats billed monthly. Current rates: . ## Why ZOOOP - **Every top model in one place** — switch models without switching tools or paying for multiple subscriptions. - **No subscription, no expiry** — buy credits and use them whenever you want. - **Two modes** — a focused generator when you need a single shot, an infinite canvas when you're building a whole sequence. - **Creator economy** — publish recipe templates and earn from others' usage. - **Runs in the browser** — no GPU and nothing to install. ## For developers — REST API ZOOOP also exposes a public REST API for image / video / audio generation. Authenticate with a Personal Access Token; per-call charges hit your existing credit balance. - [API reference](https://github.com/zooopai/skill-zooop/blob/main/references/api-docs.md) — full v1 endpoint specification - [llms-full.txt](/llms-full.txt) — every doc concatenated for single-fetch ingest ## Skill bundle (Claude Code / agent integration) The canonical agent skill bundle lives on GitHub at — `SKILL.md`, helper shell scripts, and install / contribution docs. Claude Code users: ``` claude install github:zooopai/skill-zooop ``` Other agents: clone the repo or fetch . ## Quick start 1. Visit and create a PAT (`zpk_live_…`). Bind it to a project — all PAT-submitted tasks + uploads land there. 2. (Optional) Self-check budget + project before doing real work: `GET https://api.zooop.ai/v1/me` 3. List models for the task type: `GET https://api.zooop.ai/v1/models?type=image&subtype=default` 4. (Optional) Upload a local file the model will consume: `POST https://api.zooop.ai/v1/uploads` (raw body + `Content-Type`) 5. Submit a task: `POST https://api.zooop.ai/v1/tasks` with `{interfaceId, versionId, params}` 6. Poll until terminal: `GET https://api.zooop.ai/v1/tasks/{id}` All requests carry `Authorization: Bearer $ZOOOP_API_KEY`. ## Public categories (`type` × `subType`) The 12 (type, subType) pairs the API currently exposes match the homepage sidebar one-for-one: ``` image / default text-to-image / image-to-image image / edit-image image editing with mask video / text-ref text-to-video video / motion-control image-to-video with motion direction video / first-last-frame generate video between two keyframes video / audio-lipsync sync video to audio video / extend-video extend an existing video video / video-edit edit / restyle existing video audio / text-to-speech TTS audio / voice-clone voice cloning from sample audio / sound-effect text-to-SFX audio / music text-to-music ```