Screenpipe Vision API

Manage screen capture monitors

OpenAPI Specification

screenpipe-vision-api-openapi.yml Raw ↑
openapi: 3.0.3
info:
  title: Screenpipe Activity Vision API
  version: 1.0.0
  description: 'Screenpipe captures everything you see, say, and hear on your computer. Use this API to search through captured content, manage recordings, and build AI-powered automations on top of your screen data.


    The server runs locally at `http://localhost:3030` by default.'
tags:
- name: Vision
  description: Manage screen capture monitors
paths:
  /vision/list:
    get:
      operationId: routes_health_api_list_monitors
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/MonitorInfo'
      tags:
      - Vision
      summary: List monitors
      description: Returns all available monitors/displays.
components:
  schemas:
    MonitorInfo:
      type: object
      properties:
        id:
          type: integer
        stable_id:
          type: string
        name:
          type: string
        width:
          type: integer
        height:
          type: integer
        is_default:
          type: boolean
      required:
      - id
      - stable_id
      - name
      - width
      - height
      - is_default