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

# Convert a video

> Convert a video to `mp4`, `webm`, `mov`, or `gif` (video→gif is palette-optimized).
An animated GIF input converts to any video target (gif→mp4). **Synchronous** — the
converted file's download URL is in the response.

**Pricing: 10 credits per conversion**, charged only on success. Estimate via
[`POST /v1/cost`](/api-reference/models/estimate-the-cost-of-a-request) with
`{"model": "convert-video"}`.

`file` accepts a public URL (up to 30 MB), an uploaded-file URL from
[`POST /v1/uploads`](/api-reference/files/upload-input-media) (up to 50 MB), a data
URI, or raw base64. **Videos must be 30 seconds or shorter.** Results are stored
privately and deleted after 7 days.




## OpenAPI

````yaml /openapi.yaml post /convert/video
openapi: 3.1.0
info:
  contact:
    email: support@budgetpixel.com
    name: BudgetPixel Support
  description: >
    The BudgetPixel developer API for programmatic image and video generation.


    Generation is **asynchronous**: you create a job, then poll its status until
    it

    reaches a terminal state (`succeeded` / `failed`). You are charged in
    credits

    only on success — never for failures, timeouts, or content blocked before

    generation.


    **Authentication.** All requests require an API key sent as a bearer token:

        Authorization: Bearer bpx_live_xxx

    Create and manage keys from your BudgetPixel account dashboard. The
    developer

    API is currently available on the **Ultra** plan.


    **Pricing.** API usage is metered in credits at each model's published price

    (see `GET /v1/models`). Consumer subscription perks (free daily generations,

    free-for-Ultra models, subscription discounts) do not apply to API traffic.
  title: BudgetPixel API
  version: '2026-06-20'
servers:
  - description: Production
    url: https://api.budgetpixel.com/v1
security:
  - ApiKeyAuth: []
tags:
  - description: Account and credit balance
    name: Account
  - description: Discover available models and pricing
    name: Models
  - description: Upload input media for image/video generation
    name: Uploads
  - description: Image job status
    name: Images
  - description: FLUX image models
    name: Black Forest Labs
  - description: SeeDream image models
    name: Bytedance
  - description: Video job status
    name: Videos
  - description: Kuaishou Kling video models
    name: Kling
  - description: SeeDance video models
    name: ByteDance (SeeDance)
  - description: Music job status
    name: Audios
  - description: Music generation models
    name: Music
  - description: Format conversion for images, video, and audio
    name: Conversions
  - description: Publish posts to your BudgetPixel feed
    name: Social
  - description: Content moderation — NSFW rating and CSAM detection
    name: Moderation
  - description: Content classification — music genre detection
    name: Classification
paths:
  /convert/video:
    post:
      tags:
        - Conversions
      summary: Convert a video
      description: >
        Convert a video to `mp4`, `webm`, `mov`, or `gif` (video→gif is
        palette-optimized).

        An animated GIF input converts to any video target (gif→mp4).
        **Synchronous** — the

        converted file's download URL is in the response.


        **Pricing: 10 credits per conversion**, charged only on success.
        Estimate via

        [`POST /v1/cost`](/api-reference/models/estimate-the-cost-of-a-request)
        with

        `{"model": "convert-video"}`.


        `file` accepts a public URL (up to 30 MB), an uploaded-file URL from

        [`POST /v1/uploads`](/api-reference/files/upload-input-media) (up to 50
        MB), a data

        URI, or raw base64. **Videos must be 30 seconds or shorter.** Results
        are stored

        privately and deleted after 7 days.
      operationId: convertVideo
      requestBody:
        content:
          application/json:
            schema:
              properties:
                file:
                  description: >-
                    The video (or animated GIF) to convert — public URL,
                    uploaded-file URL, data URI, or raw base64.
                  type: string
                target:
                  description: Output format.
                  enum:
                    - mp4
                    - webm
                    - mov
                    - gif
                  type: string
              required:
                - file
                - target
              type: object
        required: true
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ConvertResponse'
          description: >-
            Converted. Download from `url` (valid several hours; file kept 7
            days).
        '400':
          $ref: '#/components/responses/BadRequest'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '402':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
          description: Insufficient credits for this conversion.
        '403':
          $ref: '#/components/responses/Forbidden'
        '429':
          $ref: '#/components/responses/TooManyRequests'
components:
  schemas:
    ConvertResponse:
      description: A completed format conversion. Download from `url`.
      properties:
        content_type:
          example: image/webp
          type: string
        credits_charged:
          description: Credits charged for this conversion (2 image / 10 video / 3 audio).
          type: integer
        filename:
          description: Suggested download filename.
          example: photo.webp
          type: string
        retention:
          example: 7 days
          type: string
        size_bytes:
          description: Converted file size in bytes.
          type: integer
        url:
          description: >-
            Signed download URL for the converted file (valid several hours; the
            file itself is kept 7 days).
          format: uri
          type: string
      type: object
    Error:
      properties:
        error:
          properties:
            code:
              description: Stable machine-readable code.
              example: model_not_available
              type: string
            message:
              type: string
            type:
              description: Error category.
              example: invalid_request_error
              type: string
          required:
            - type
            - code
            - message
          type: object
      required:
        - error
      type: object
  responses:
    BadRequest:
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
      description: The request was malformed or referenced an unavailable model.
    Unauthorized:
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
      description: Missing or invalid API key.
    Forbidden:
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
      description: Authenticated but not permitted (plan gate, ownership, restriction).
    TooManyRequests:
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
      description: Rate or queue limit reached. Retry after a short delay.
  securitySchemes:
    ApiKeyAuth:
      bearerFormat: bpx_live_*
      description: 'API key as a bearer token: Authorization: Bearer bpx_live_xxx'
      scheme: bearer
      type: http

````