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

# Get a screenshot at a timestamp

> Extracts a still frame of the recording at the given timestamp and returns a presigned URL to the image. If `is_screenshot_ready` is `false`, the recording's downloadable video is not up to date yet — call `POST /recordings/{id}/trigger-mp4` to regenerate it, then retry.

<Info>Replace `{your-subdomain}` with your workspace's subdomain. <br /> Learn how to find your subdomain in [Workspace subdomain](/getting-started/workspace-subdomain).</Info>


## OpenAPI

````yaml bundled/recordings.yaml GET /recordings/{id}/screenshot
openapi: 3.0.3
info:
  title: NeetoRecord Recordings APIs
  version: 2.0.0
servers:
  - description: NeetoRecord APIs
    url: https://{your-subdomain}.neetorecord.com/api/external/v2
    variables:
      your-subdomain:
        default: spinkart
        description: >-
          Replace **spinkart** with your [workspace's
          subdomain](/getting-started/workspace-subdomain).
security: []
tags:
  - name: Recordings
    description: APIs to list recordings in your workspace.
paths:
  /recordings/{id}/screenshot:
    get:
      tags:
        - Recordings
      summary: Get a screenshot at a timestamp
      description: >-
        Extracts a still frame of the recording at the given timestamp and
        returns a presigned URL to the image. If `is_screenshot_ready` is
        `false`, the recording's downloadable video is not up to date yet — call
        `POST /recordings/{id}/trigger-mp4` to regenerate it, then retry.
      parameters:
        - $ref: '#/components/parameters/api_key_header'
        - $ref: '#/components/parameters/accept_header'
        - in: path
          name: id
          required: true
          description: The recording ID (`public_link_id`) from the watch URL.
          schema:
            type: string
        - in: query
          name: timestamp
          required: true
          description: Timestamp in seconds (may be fractional) of the frame to capture.
          schema:
            type: number
            minimum: 0
        - in: query
          name: image_format
          required: false
          description: 'Image format: `png` or `jpeg`. Defaults to `png`.'
          schema:
            type: string
            enum:
              - png
              - jpeg
            default: png
      responses:
        '200':
          description: Screenshot URL generated, or not ready yet.
          content:
            application/json:
              schema:
                type: object
                properties:
                  recording_id:
                    type: string
                  timestamp:
                    type: number
                  image_format:
                    type: string
                  is_screenshot_ready:
                    type: boolean
                    description: >-
                      `false` when the recording's video file is outdated. Call
                      `POST /recordings/{id}/trigger-mp4` to regenerate it, then
                      retry.
                  screenshot_url:
                    type: string
                    description: >-
                      Presigned URL to the image. Present only when
                      `is_screenshot_ready` is `true`.
                  url_expires_in_seconds:
                    type: integer
              example:
                recording_id: x9y8z7w6v5u4t3s2
                timestamp: 12.5
                image_format: png
                is_screenshot_ready: true
                screenshot_url: >-
                  https://neeto-record-transcoded-recordings.s3.amazonaws.com/.../frames/12500.png?X-Amz-Signature=...
                url_expires_in_seconds: 600
        '422':
          description: >-
            Invalid timestamp or image format, recording still processing, or
            extraction failed.
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
              example:
                error: Timestamp must be a number between 0 and 125.5 seconds.
components:
  parameters:
    api_key_header:
      in: header
      name: X-Api-Key
      description: >-
        API key. Refer to [Authentication](/getting-started/authentication) for
        more information.
      required: true
      schema:
        type: string
    accept_header:
      in: header
      name: Accept
      description: Must be `application/json`.
      required: true
      schema:
        type: string
        enum:
          - application/json
        default: application/json

````