Screenpipe Activity API

Activity summaries and analytics

Operations 1

GET /activity-summary Get activity summary #

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-activity-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-activity-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Screenpipe Activity 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: Activity
  description: Activity summaries and analytics
paths:
  /activity-summary:
    get:
      description: 'Lightweight compressed activity overview for a time range.

        Returns app usage, recent accessibility texts, and audio summary (~200-500 tokens).'
      operationId: routes_activity_summary_get_activity_summary
      parameters:
      - name: start_time
        schema:
          type: string
          format: date-time
        in: query
        style: form
      - name: end_time
        schema:
          type: string
          format: date-time
        in: query
        style: form
      - name: app_name
        schema:
          type:
          - string
          - 'null'
        in: query
        style: form
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ActivitySummaryResponse'
      tags:
      - Activity
      summary: Get activity summary
components:
  schemas:
    ActivitySummaryResponse:
      type: object
      properties:
        apps:
          type: array
          items:
            $ref: '#/components/schemas/AppUsage'
        recent_texts:
          type: array
          items:
            $ref: '#/components/schemas/RecentText'
        audio_summary:
          $ref: '#/components/schemas/AudioSummary'
        total_frames:
          type: integer
        time_range:
          $ref: '#/components/schemas/TimeRange'
      required:
      - apps
      - recent_texts
      - audio_summary
      - total_frames
      - time_range
    RecentText:
      type: object
      properties:
        text:
          type: string
        app_name:
          type: string
        timestamp:
          type: string
      required:
      - text
      - app_name
      - timestamp
    SpeakerSummary:
      type: object
      properties:
        name:
          type: string
        segment_count:
          type: integer
      required:
      - name
      - segment_count
    AppUsage:
      type: object
      properties:
        name:
          type: string
        frame_count:
          type: integer
        minutes:
          type: number
        first_seen:
          type: string
        last_seen:
          type: string
      required:
      - name
      - frame_count
      - minutes
      - first_seen
      - last_seen
    TimeRange:
      type: object
      properties:
        start:
          type: string
        end:
          type: string
      required:
      - start
      - end
    AudioSummary:
      type: object
      properties:
        segment_count:
          type: integer
        speakers:
          type: array
          items:
            $ref: '#/components/schemas/SpeakerSummary'
      required:
      - segment_count
      - speakers