Mountsea API
Mountsea API is a premium microservice gateway for official-quality AI model access across image, video, audio, transcription, and chat-style capabilities. It is designed for production workloads that need stable routing, broad model coverage, and one consistent async task pattern.Official-Quality Models
Access flagship model families such as Veo 3.1, Kling v3, WAN 2.7, Seedance 2.0, Nano Banana, GPT Image, ElevenLabs Music, and Whisper-style transcription through one API surface.
Production Stable
Submit tasks through Mountsea’s managed gateway, poll a standard Task object, and use optional webhooks for terminal status callbacks.
Full-Platform Coverage
Discover every available endpoint from the marketplace instead of hard-coding provider-specific SDKs, schemas, and task formats.
Core Flow
Every generation endpoint follows the same async pattern:1
Discover endpoints
Call
GET /ms/v1/endpoints to list marketplace endpoints. Filter by capability (image, video, audio, chat, transcribe, embeddings) or by tag.2
Inspect the schema
Call
GET /ms/v1/endpoints/{endpoint_slug} to read the endpoint’s input_schema, output_schema, and ready-to-copy examples.3
Submit a task
Call
POST /ms/v1/run/{endpoint_slug} with { "input": { ... } }. The response is a standard Task object with status: "queued".4
Poll or receive a webhook
Poll
GET /ms/v1/tasks/{task_id} until status is succeeded, failed, timeout, or canceled. You can also pass webhook_url when submitting a task.Base URL
Standard Request Body
Useinput for the endpoint parameters. Media URLs, prompts, model options, and generation controls all live inside this object.
Standard Task Object
Task responses share the same top-level fields:Management Endpoints
- Submit Async Task - run any marketplace endpoint by slug.
- Poll Task Result - read task status and output.
- Cancel Task - cancel a non-terminal task.
- List Endpoints - browse the marketplace.
- Endpoint Detail - inspect schemas and examples.
Endpoint Catalog
Each route below has a dedicated reference page with its full request body (input parameters) and response structure (output). The endpoint slug is the path after /ms/v1/run/.