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

# Watermark Remover

> This endpoint helps to remove watermarks from videos.

![Watermark Remover](https://assets.modelslab.ai/generations/42a8971d-ed6b-4fab-8cab-1fe294e0ce62.webp)

## Request

Make a `POST` request to below endpoint and pass the required parameters in the request body.

```curl curl theme={null}
--request POST 'https://modelslab.com/api/v6/video/watermark_remover' \
```

## Body

```json json theme={null}
{
    "key": "your_api_key",
    "init_video": "https://assets.modelslab.ai/generations/ee2c3b2c-7d68-4e71-900a-8566b0b05fe9.mp4",
    "webhook": null,
    "track_id": null
}
```


## OpenAPI

````yaml POST /video/watermark_remover
openapi: 3.1.0
info:
  title: ModelsLab Video API
  description: >-
    A comprehensive API for AI-driven video generation including text-to-video,
    image-to-video, scene transitions, and video management capabilities
  license:
    name: MIT
  version: 6.0.0
servers:
  - url: https://modelslab.com/api/v6
security: []
paths:
  /video/watermark_remover:
    post:
      summary: Remove watermark from video
      description: Removes watermark from a video
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/WatermarkRemoverRequest'
      responses:
        '200':
          description: Video generation response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/VideoResponse'
        '400':
          description: Bad request - invalid parameters
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '401':
          description: Unauthorized - invalid API key
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
components:
  schemas:
    WatermarkRemoverRequest:
      type: object
      required:
        - key
        - init_video
      properties:
        key:
          type: string
          description: Your API Key used for request authorization
        init_video:
          type: string
          format: uri
          description: URL of the initial video with watermark
        webhook:
          type: string
          format: uri
          description: URL to receive a POST API call once video generation is complete
        track_id:
          type: string
          description: Unique ID used in webhook response to identify the request
    VideoResponse:
      type: object
      properties:
        status:
          type: string
          enum:
            - success
            - processing
            - error
          description: Status of the video generation
        generationTime:
          type: number
          description: Time taken to generate the video in seconds
        id:
          type: integer
          description: Unique identifier for the video generation
        output:
          type: array
          items:
            type: string
            format: uri
          description: Array of generated video URLs
        proxy_links:
          type: array
          items:
            type: string
            format: uri
          description: Array of proxy video URLs
        future_links:
          type: array
          items:
            type: string
            format: uri
          description: Array of future video URLs for queued requests
        meta:
          type: object
          description: Metadata about the video generation including all parameters used
        eta:
          type: integer
          description: Estimated time for completion in seconds (processing status)
        message:
          type: string
          description: Status message or additional information
        tip:
          type: string
          description: Additional information or tips for the user
        fetch_result:
          type: string
          format: uri
          description: URL to fetch the result when processing
    Error:
      type: object
      required:
        - status
        - message
      properties:
        status:
          type: string
          enum:
            - error
        message:
          type: string
          description: Error message description

````