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

# Poll or Download Video

> Forward a provider-native polling or video-content request through the AI Gateway.



## OpenAPI

````yaml /gateway-openapi.json get /videos-proxy/{providerAccountName}/{nativePath}
openapi: 3.0.0
info:
  title: LLM Gateway
  description: API for LLM Gateway
  version: 1.0.0
servers:
  - url: https://{gatewayBaseURL}
    variables:
      gatewayBaseURL:
        default: gateway.truefoundry.ai
        description: Gateway base URL
    description: Gateway base URL
security:
  - AuthorizationBearer: []
tags:
  - name: Chat
  - name: Agent
  - name: Messages
  - name: MCP
  - name: Embeddings
  - name: Rerank
  - name: Responses
  - name: Image
  - name: Audio
  - name: Video
  - name: Batch
  - name: Files
  - name: Fine-tuning
  - name: Moderations
  - name: Models
paths:
  /videos-proxy/{providerAccountName}/{nativePath}:
    get:
      tags:
        - Video
      summary: Poll or Download Video
      description: >-
        Forward a provider-native polling or video-content request through the
        AI Gateway.
      parameters:
        - name: providerAccountName
          in: path
          required: true
          schema:
            type: string
            description: TrueFoundry provider account name.
        - name: nativePath
          in: path
          required: true
          schema:
            type: string
            description: Provider-native polling or content-download path suffix.
        - name: x-tfy-model-name
          in: header
          required: true
          schema:
            type: string
            description: Full TrueFoundry model name used to resolve the registered model.
      responses:
        '200':
          description: Provider-native polling or video-content response.
        '400':
          description: Invalid provider path, model, or request.
components:
  securitySchemes:
    AuthorizationBearer:
      type: http
      scheme: bearer
      bearerFormat: JWT

````