Screenpipe System API

Health checks and system status

Operations 1

GET /health Health check #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/screenpipe-system-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

screenpipe-system-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Screenpipe Activity System 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.'
servers:
- url: http://localhost:3030
  description: Base URL declared by the provider in apis.yml (roadmap#122).
tags:
- name: System
  description: Health checks and system status
paths:
  /health:
    get:
      operationId: routes_health_health_check
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HealthCheckResponse'
      tags:
      - System
      summary: Health check
      description: Returns system health status including audio/video pipeline state, device info, and version.
components:
  schemas:
    TreeWalkerSnapshot:
      description: Point-in-time snapshot of tree walker health metrics (no private data).
      type: object
      properties:
        walks_total:
          type: integer
        walks_stored:
          type: integer
        walks_deduped:
          type: integer
        walks_empty:
          type: integer
        walks_error:
          type: integer
        walks_truncated:
          type: integer
        walks_truncated_timeout:
          type: integer
        walks_truncated_max_nodes:
          type: integer
        truncation_rate:
          type: number
        avg_walk_duration_ms:
          type: integer
        max_walk_duration_ms:
          type: integer
        avg_nodes_per_walk:
          type: integer
        max_depth_reached:
          type: integer
        total_text_chars:
          type: integer
      required:
      - walks_total
      - walks_stored
      - walks_deduped
      - walks_empty
      - walks_error
      - walks_truncated
      - walks_truncated_timeout
      - walks_truncated_max_nodes
      - truncation_rate
      - avg_walk_duration_ms
      - max_walk_duration_ms
      - avg_nodes_per_walk
      - max_depth_reached
      - total_text_chars
    HealthCheckResponse:
      type: object
      properties:
        status:
          type: string
        status_code:
          type: integer
        last_frame_timestamp:
          type:
          - string
          - 'null'
          format: date-time
        last_audio_timestamp:
          type:
          - string
          - 'null'
          format: date-time
        frame_status:
          type: string
        audio_status:
          type: string
        message:
          type: string
        verbose_instructions:
          type:
          - string
          - 'null'
        device_status_details:
          type:
          - string
          - 'null'
        monitors:
          type:
          - array
          - 'null'
          items:
            type: string
        pipeline:
          $ref: '#/components/schemas/PipelineHealthInfo'
        audio_pipeline:
          $ref: '#/components/schemas/AudioPipelineHealthInfo'
        accessibility:
          $ref: '#/components/schemas/TreeWalkerSnapshot'
        pool_stats:
          $ref: '#/components/schemas/PoolHealthInfo'
        vision_db_write_stalled:
          type: boolean
        audio_db_write_stalled:
          type: boolean
        drm_content_paused:
          type: boolean
        schedule_paused:
          type: boolean
        hostname:
          type:
          - string
          - 'null'
        version:
          type:
          - string
          - 'null'
      required:
      - status
      - status_code
      - last_frame_timestamp
      - last_audio_timestamp
      - frame_status
      - audio_status
      - message
      - verbose_instructions
      - device_status_details
      - vision_db_write_stalled
      - audio_db_write_stalled
      - drm_content_paused
      - schedule_paused
    PoolHealthInfo:
      type: object
      properties:
        read_pool_size:
          type: integer
        read_pool_idle:
          type: integer
        write_pool_size:
          type: integer
        write_pool_idle:
          type: integer
      required:
      - read_pool_size
      - read_pool_idle
      - write_pool_size
      - write_pool_idle
    PipelineHealthInfo:
      type: object
      properties:
        uptime_secs:
          type: number
        frames_captured:
          type: integer
        frames_db_written:
          type: integer
        frames_dropped:
          type: integer
        frame_drop_rate:
          type: number
        capture_fps_actual:
          type: number
        avg_ocr_latency_ms:
          type: number
        avg_db_latency_ms:
          type: number
        ocr_queue_depth:
          type: integer
        video_queue_depth:
          type: integer
        time_to_first_frame_ms:
          type:
          - number
          - 'null'
        pipeline_stall_count:
          type: integer
        ocr_cache_hit_rate:
          type: number
      required:
      - uptime_secs
      - frames_captured
      - frames_db_written
      - frames_dropped
      - frame_drop_rate
      - capture_fps_actual
      - avg_ocr_latency_ms
      - avg_db_latency_ms
      - ocr_queue_depth
      - video_queue_depth
      - time_to_first_frame_ms
      - pipeline_stall_count
      - ocr_cache_hit_rate
    AudioPipelineHealthInfo:
      type: object
      properties:
        uptime_secs:
          type: number
        chunks_sent:
          type: integer
        chunks_channel_full:
          type: integer
        stream_timeouts:
          type: integer
        vad_passed:
          type: integer
        vad_rejected:
          type: integer
        vad_passthrough_rate:
          type: number
        avg_speech_ratio:
          type: number
        transcriptions_completed:
          type: integer
        transcriptions_empty:
          type: integer
        transcription_errors:
          type: integer
        db_inserted:
          type: integer
        total_words:
          type: integer
        words_per_minute:
          type: number
        chunks_received:
          type:
          - integer
          - 'null'
        process_errors:
          type:
          - integer
          - 'null'
        audio_level_rms:
          type:
          - number
          - 'null'
        audio_devices:
          type:
          - array
          - 'null'
          items:
            type: string
        transcription_mode:
          type:
          - string
          - 'null'
        transcription_paused:
          type:
          - boolean
          - 'null'
        segments_deferred:
          type:
          - integer
          - 'null'
        segments_batch_processed:
          type:
          - integer
          - 'null'
        batch_paused_reason:
          type:
          - string
          - 'null'
        meeting_detected:
          type:
          - boolean
          - 'null'
        meeting_app:
          type:
          - string
          - 'null'
      required:
      - uptime_secs
      - chunks_sent
      - chunks_channel_full
      - stream_timeouts
      - vad_passed
      - vad_rejected
      - vad_passthrough_rate
      - avg_speech_ratio
      - transcriptions_completed
      - transcriptions_empty
      - transcription_errors
      - db_inserted
      - total_words
      - words_per_minute