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

# List batch provider capabilities

> Returns provider-level batch input mode support for file upload and request-list batch creation.

Requires workspace preview access. See [Video and batch jobs](../../guides/async-video-and-batch.mdx) for setup, webhooks, and result handling.


## OpenAPI

````yaml GET /batches/capabilities
openapi: 3.0.3
info:
  title: Phaseo Gateway API
  description: >-
    A gateway API for accessing various AI models with OpenAI-compatible
    endpoints.
  version: 1.0.0
  contact:
    name: Phaseo
    url: https://phaseo.app
    email: danielbutler500@gmail.com
servers:
  - url: https://api.phaseo.app/v1
    description: Global routing
security:
  - BearerAuth: []
tags:
  - name: Gateway
    description: Core Phaseo Gateway operations.
paths:
  /batches/capabilities:
    get:
      tags:
        - Gateway
      summary: List batch provider capabilities
      description: >-
        Returns provider-level batch input mode support for file upload and
        request-list batch creation.
      operationId: listBatchCapabilities
      responses:
        '200':
          description: Batch provider capability list
          content:
            application/json:
              schema:
                type: object
                properties:
                  object:
                    type: string
                    example: list
                  data:
                    type: array
                    items:
                      $ref: '#/components/schemas/BatchProviderCapability'
components:
  schemas:
    BatchProviderCapability:
      type: object
      properties:
        id:
          type: string
        name:
          type: string
        status:
          type: string
          enum:
            - active
            - planned
        gateway_input_modes:
          type: array
          items:
            type: string
            enum:
              - file
              - requests
        native_input_modes:
          type: array
          items:
            type: string
            enum:
              - file
              - requests
        documentation_url:
          type: string
          format: uri
        notes:
          type: string
          nullable: true
        endpoints:
          type: array
          description: Batch endpoints supported by this provider.
          items:
            type: object
            required:
              - endpoint
              - mode
            properties:
              endpoint:
                type: string
              mode:
                type: string
                enum:
                  - native
                  - translated
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      description: Bearer token authentication

````