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

# Get export videos

> Returns the cached video data for a completed export, including metrics and optional AI-enriched fields (transcript, vision summary).



## OpenAPI

````yaml /api-reference/openapi.json get /exports/{id}/videos
openapi: 3.0.0
info:
  description: >-
    Unified social media inbox API. Read and respond to comments, DMs, reviews,
    and mentions across Instagram, Facebook, Threads, Google Business Profile,
    TikTok, LinkedIn, and YouTube through a single REST API. X/Twitter and
    Trustpilot coming soon.
  title: SocialAPI.AI
  contact:
    name: SocialAPI.AI Support
    email: support@social-api.ai
  license:
    name: MIT
  version: '1.0'
servers:
  - url: https://api.social-api.ai/v1
security: []
paths:
  /exports/{id}/videos:
    get:
      tags:
        - Exports
      summary: Get export videos
      description: >-
        Returns the cached video data for a completed export, including metrics
        and optional AI-enriched fields (transcript, vision summary).
      parameters:
        - description: Export ID
          name: id
          in: path
          required: true
          schema:
            type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/api_endpoints.ExportVideosResponse'
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/api_endpoints.ErrorResponse'
        '404':
          description: Not Found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/api_endpoints.ErrorResponse'
      security:
        - BearerAuth: []
components:
  schemas:
    api_endpoints.ExportVideosResponse:
      type: object
      properties:
        account_id:
          type: string
        platform:
          type: string
        videos:
          type: array
          items:
            $ref: '#/components/schemas/api_endpoints.ExportVideoItem'
    api_endpoints.ErrorResponse:
      type: object
      properties:
        error:
          $ref: '#/components/schemas/api_endpoints.ErrorBody'
    api_endpoints.ExportVideoItem:
      type: object
      properties:
        comment_count:
          type: integer
        cover_image_url:
          type: string
        create_time:
          type: string
        description:
          type: string
        duration_seconds:
          type: integer
        height:
          type: integer
        like_count:
          type: integer
        platform:
          type: string
        platform_video_id:
          type: string
        share_count:
          type: integer
        share_url:
          type: string
        title:
          type: string
        transcript:
          type: string
        transcript_lang:
          type: string
        view_count:
          type: integer
        vision_category:
          type: string
        vision_elements:
          type: array
          items:
            type: string
        vision_summary:
          type: string
        width:
          type: integer
    api_endpoints.ErrorBody:
      type: object
      properties:
        code:
          type: string
          example: resource.not_found
        message:
          type: string
          example: Account not found
        meta:
          type: object
          additionalProperties: {}
  securitySchemes:
    BearerAuth:
      description: >-
        Prefix your API key with "Bearer ". Example: `Authorization: Bearer
        sapi_key_...`
      type: apiKey
      name: Authorization
      in: header

````