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

# List named summary analyses for media

> Lists selected media only. With neither media_paths nor hash_strs, returns an empty summaries array. Reads persisted artifacts directly; analysis data does not need to be loaded.



## OpenAPI

````yaml /api-reference/openapi-v1.yaml post /summaries/list
openapi: 3.0.3
info:
  title: Jumper Public API
  version: '1.0'
  description: >
    REST API for third-party integrations with Jumper's media analysis engine.


    Jumper analyzes video, image, and audio files — enabling semantic visual
    search,

    speech transcription, face detection with clustering, and hierarchical
    summaries.

    This API exposes those capabilities for use by MAM systems, automation
    pipelines,

    and custom tooling.


    ## Authentication


    All endpoints except `/health` require a **Jumper Pro** license key.

    The OpenAPI contract models the supported `X-License-Key` header flow.


    Jumper also accepts a `license_key` field in many JSON POST bodies as a

    convenience, but that is a Jumper-specific request-body convention rather

    than an OpenAPI security scheme.


    Invalid or missing keys return `401`. Non-Pro keys return `403`.


    ## Key Concepts


    - **`cache_dir`** — The folder where Jumper stores analysis data (visual
    analysis, transcriptions, face clusters). You choose this path.

    - **`media_paths`** — Absolute filesystem paths to media files. Jumper needs
    direct access to these files.

    - **`hash_str`** — A CRC32-based hash that uniquely identifies a media file.
    Returned by the metadata endpoint.

    - **`model_key`** — Internal identifier for a visual or speech analysis
    model variant (e.g. `v2-medium-256`).
  contact:
    name: Jumper
    url: https://getjumper.io
servers:
  - url: http://localhost:6699/api/v1
    description: Local Jumper backend
security:
  - HeaderAuth: []
paths:
  /summaries/list:
    post:
      tags:
        - Summaries
      summary: List named summary analyses for media
      description: >-
        Lists selected media only. With neither media_paths nor hash_strs,
        returns an empty summaries array. Reads persisted artifacts directly;
        analysis data does not need to be loaded.
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
                - cache_dir
              properties:
                cache_dir:
                  type: string
                media_paths:
                  type: array
                  items:
                    type: string
                hash_strs:
                  type: array
                  items:
                    type: string
      responses:
        '200':
          description: >-
            Per-media analysis names, objectives, collections, and one-line
            summaries
          content:
            application/json:
              schema:
                type: object
                required:
                  - summaries
                properties:
                  summaries:
                    type: array
                    items:
                      $ref: '#/components/schemas/SummaryMediaListing'
        '400':
          description: Invalid cache directory or media selectors
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
components:
  schemas:
    SummaryMediaListing:
      type: object
      required:
        - hash_str
        - summary_cached
        - analysis_count
        - analyses
      properties:
        path:
          type: string
          nullable: true
        hash_str:
          type: string
        summary_cached:
          type: boolean
        analysis_count:
          type: integer
        analyses:
          type: array
          items:
            $ref: '#/components/schemas/SummaryAnalysisListing'
    Error:
      type: object
      properties:
        error:
          type: string
          description: Error message
      required:
        - error
    SummaryAnalysisListing:
      type: object
      required:
        - id
        - name
        - summary_ref
        - short_summary
        - root_node_id
      properties:
        id:
          type: string
        name:
          type: string
        summary_ref:
          type: string
          description: Stable `<media_hash>:<analysis_id>` selector.
        collection:
          type: object
          nullable: true
          additionalProperties: true
        summary_objective:
          type: object
          additionalProperties: true
        footage_context:
          type: string
          nullable: true
        short_summary:
          type: string
        root_node_id:
          type: string
        created_at:
          type: string
          nullable: true
        updated_at:
          type: string
          nullable: true
  securitySchemes:
    HeaderAuth:
      type: apiKey
      in: header
      name: X-License-Key
      description: Jumper Pro license key passed via header

````