Moonscale Video Generation API

The videoGeneration API from Moonscale — 2 operation(s) for videogeneration.

Operations 2

GET /api/studio-avatar/generated-video/{correlationId} Get generated video (same as webhook payload) by correlation ID
POST /api/studio-avatar/generate-video Generate a new video

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/moonscale-videogeneration-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

moonscale-videogeneration-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Moonscale Video Generation API
  description: Moonscale API provides endpoints for generating and managing video and audio content for live avatars.
  license:
    name: MIT
  version: 1.0.1
servers:
- url: http://sandbox.mintlify.com
security:
- ApiKeyAuth: []
tags:
- name: videoGeneration
paths:
  /api/studio-avatar/generated-video/{correlationId}:
    get:
      tags:
      - videoGeneration
      summary: Get generated video (same as webhook payload) by correlation ID
      parameters:
      - name: correlationId
        in: path
        required: true
        schema:
          type: string
        description: The correlation ID of the video generation request
      security:
      - ApiKeyAuth: []
      responses:
        '200':
          description: Generated Video retrieved successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetGeneratedVideoByCorrelationIdResponse'
        '404':
          description: Video not found
  /api/studio-avatar/generate-video:
    post:
      tags:
      - videoGeneration
      summary: Generate a new video
      description: Generate a video using a studio avatar (requires API key authentication)
      security:
      - ApiKeyAuth: []
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/VideoGenerationRequest'
      responses:
        '201':
          description: Video generation initiated successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/VideoGenerationResponse'
        '400':
          description: Invalid request parameters
components:
  schemas:
    GetGeneratedVideoByCorrelationIdResponse:
      type: object
      properties:
        id:
          type: string
          description: Unique identifier for the generated video
        script:
          type: string
          description: The script content used for the video
        voiceId:
          type: string
          description: Identifier for the voice used in the video
        avatarId:
          type: string
          description: Identifier for the avatar used in the video
        status:
          type: string
          description: Current status of the video generation
          enum:
          - PENDING
          - PROCESSING
          - COMPLETED
          - FAILED
        videoUrl:
          type: string
          description: URL where the generated video can be accessed
        correlationId:
          type: string
          description: Identifier for correlating related events or requests
    VideoGenerationRequest:
      type: object
      required:
      - avatarId
      - script
      - voiceId
      - correlationId
      properties:
        avatarId:
          type: string
          description: Avatar identifier to use in the video
        script:
          type: string
          description: Text content to be spoken in the video
        voiceId:
          type: string
          description: Voice identifier for speech synthesis
        correlationId:
          type: string
          description: External reference identifier provided by the user
        webhookUrl:
          type: string
          description: Optional callback URL for completion notification
        metadata:
          type: object
          description: Custom metadata for the video
    VideoGenerationResponse:
      type: object
      properties:
        id:
          type: string
          description: Internal unique identifier
        correlationId:
          type: string
          description: External reference identifier provided by the user
        status:
          type: string
          description: The status of the video generation
          enum:
          - PENDING
          - PROCESSING
          - COMPLETED
          - FAILED
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key