Mistrounter API

One stable API for production-ready AI video generation

Mistrounter gives your application one asynchronous API for leading video models. Submit a prompt or source image, receive a generation ID immediately, then poll for completion or receive a signed webhook.

Base URL

https://api.mistrounter.ai/v1

All requests and responses use JSON over HTTPS. API keys are sent as Bearer tokens and should only be used from server-side code.

Core workflow

Create an API key

Sign in to the Mistrounter dashboard and create a key under Settings → API keys. The complete key is displayed once.

Choose a model

Call GET /models or review Models for supported inputs, durations, aspect ratios, and credit costs.

Submit a generation

Call POST /videos/generations. The API returns 202 Accepted and a generation object with a pending status.

Receive the result

Poll GET /videos/generations/{id} or provide a webhook_url. Successful jobs contain a durable video URL in output.

Start with the five-minute quickstart, then add idempotency and signed webhooks before production.