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

# Get Video

> Get a video

<Info>
  **Product**: Video Datalake
  **Host**: `https://api.memories.ai/datalake/v1`
  **Auth**: `Authorization: sk-mai-...`
</Info>

Fetch one video's details, including duration, AI title/tags, index version, and a fresh `source_url` (24h signed). On `failed`, `error` carries a `{code, message}`.

<Note>
  **Pricing:** Free — management / read (no charge). · See [Pricing](/datalake/pricing) for the full model.
</Note>

## Response Fields

<ResponseField name="status" type="string">`processing` | `ready` | `failed`.</ResponseField>
<ResponseField name="duration_seconds" type="number">Video duration.</ResponseField>
<ResponseField name="metadata.title" type="string">User or AI-generated title.</ResponseField>
<ResponseField name="index_version" type="integer">Index generation; bumps on re-index.</ResponseField>
<ResponseField name="error" type="object">`{code, message}` when `failed`; code ∈ source\_unresolved / unsupported\_media / internal.</ResponseField>
<ResponseField name="source_url" type="string">Original direct link or a 24h signed URL.</ResponseField>


## OpenAPI

````yaml GET /datalake/v1/videos/{id}
openapi: 3.1.0
info:
  title: Memories.ai DataLake API 2.0
  version: 2026-08
  description: OpenAPI mapping used by Mintlify Try it for the DataLake API 2.0 docs.
servers:
  - url: https://api.memories.ai
security:
  - ApiKeyAuth: []
paths:
  /datalake/v1/videos/{id}:
    get:
      tags:
        - Videos — Manage
      summary: Get a video
      description: >-
        Fetch one video's details, including duration, AI title/tags, index
        version, and a fresh `source_url` (24h signed). On `failed`, `error`
        carries a `{code, message}`.
      operationId: get_video
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: string
          description: Video ID.
      responses:
        '200':
          description: Success
          content:
            application/json:
              example:
                video_id: vid_xxx
                collection_id: col_xxx
                status: ready
                duration_seconds: 47
                captured_at: …
                location:
                  lat: 31.2
                  lng: 121.5
                fps: 1
                metadata:
                  title: User or AI title
                  tags:
                    - …
                  custom: {}
                created_at: …
                index_version: 1
                error: null
                source_url: …original or 24h signed…
components:
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: Authorization
      description: 'Send `Authorization: sk-mai-...`'

````