> ## Documentation Index
> Fetch the complete documentation index at: https://docs.mountsea.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Model Details

> Returns the full `input_schema` and `example` for a single model.

**Typical workflow:**
1. Call this endpoint to get `input_schema` and `example`
2. Copy `example` as the `input` field in your task submission
3. `POST /hub/v1/{capability}` to submit the task
4. `GET /hub/v1/tasks/{task_id}` to poll for the result



## OpenAPI

````yaml GET /hub/v1/models/{model}
openapi: 3.0.0
info:
  title: Hub - Premium AI Gateway (Image / Video / Audio / Transcribe)
  description: >-
    Hub is a unified AI Gateway offering **flagship-quality, production-stable,
    and cheaper-than-official** access to the world's best AI models across
    image, video, audio (music) and transcription capabilities.


    **Why Hub?**

    - 🏆 **Flagship quality** — only official flagship model weights (Veo 3.1,
    Nano Banana Pro, GPT Image 2, Kling v3 Pro, WAN 2.7, Seedance 2.0,
    ElevenLabs Music). No knock-offs, no distillations — same outputs as going
    direct.

    - 🛡️ **Production stable** — multi-region routing, automatic failover,
    transparent retries on transient errors, queue-aware load balancing. Built
    for 24/7 production traffic.

    - 💰 **Cheaper than official** — pay only on `status=completed` (failed
    tasks are free), billed in unified credits at a meaningful discount versus
    going direct to the model provider. No per-provider minimums, no monthly
    subscriptions.


    Each endpoint accepts a `model` + `input` payload — switch models without
    changing the endpoint shape.
  version: 1.0.0
  contact: {}
servers:
  - url: https://api.mountsea.ai
    description: API Gateway
security: []
tags:
  - name: hub
    description: >-
      Model discovery — list and inspect schemas/examples for every available
      model across all capabilities.
  - name: Image
    description: >-
      Image generation & editing models (Nano Banana, GPT Image 2 and edit
      variants).
  - name: Video
    description: >-
      Video generation models — text-to-video, image-to-video, multi-reference,
      first-last frame and edit (Veo 3.1, Kling v3, WAN 2.7, Seedance 2.0).
  - name: Audio
    description: >-
      Audio capabilities — music generation (ElevenLabs Music) and audio/video
      transcription.
  - name: Tasks
    description: Poll the status / result of any submitted Hub task.
paths:
  /hub/v1/models/{model}:
    get:
      tags:
        - hub
      summary: Get model details
      description: |-
        Returns the full `input_schema` and `example` for a single model.

        **Typical workflow:**
        1. Call this endpoint to get `input_schema` and `example`
        2. Copy `example` as the `input` field in your task submission
        3. `POST /hub/v1/{capability}` to submit the task
        4. `GET /hub/v1/tasks/{task_id}` to poll for the result
      operationId: HubModelsPublicController_detail
      parameters:
        - name: model
          required: true
          in: path
          description: Model ID, e.g. `veo-3.1`, `nano-banana-2`, `gpt-image-2`
          schema:
            example: veo-3.1
            type: string
      responses:
        '200':
          description: ''
      security:
        - bearerAuth: []
components:
  securitySchemes:
    bearerAuth:
      scheme: bearer
      bearerFormat: JWT
      type: http

````