Screenpipe Meetings API

Detected and manual meeting transcriptions

Operations 9

GET /meetings List meetings #
GET /meetings/status Get meeting detection status #
POST /meetings/merge Merge meetings #
POST /meetings/bulk-delete Bulk delete meetings #
POST /meetings/start Start a manual meeting #
POST /meetings/stop Stop a manual meeting #
GET /meetings/{id} Get meeting by ID #
PUT /meetings/{id} Update meeting #
DELETE /meetings/{id} Delete meeting #

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-meetings-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-meetings-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Screenpipe Activity Meetings 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: Meetings
  description: Detected and manual meeting transcriptions
paths:
  /meetings:
    get:
      operationId: routes_meetings_list_meetings_handler
      parameters:
      - name: start_time
        schema:
          type:
          - string
          - 'null'
        in: query
        style: form
      - name: end_time
        schema:
          type:
          - string
          - 'null'
        in: query
        style: form
      - name: limit
        schema:
          type: integer
        in: query
        style: form
      - name: offset
        schema:
          type: integer
        in: query
        style: form
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/MeetingRecord'
      tags:
      - Meetings
      summary: List meetings
      description: Returns detected and manually started meetings with transcriptions.
  /meetings/status:
    get:
      operationId: routes_meetings_meeting_status_handler
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: object
      tags:
      - Meetings
      summary: Get meeting detection status
  /meetings/merge:
    post:
      operationId: routes_meetings_merge_meetings_handler
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/MergeMeetingsRequest'
        required: true
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/MeetingRecord'
      tags:
      - Meetings
      summary: Merge meetings
  /meetings/bulk-delete:
    post:
      operationId: routes_meetings_bulk_delete_meetings_handler
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/BulkDeleteMeetingsRequest'
        required: true
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: object
      tags:
      - Meetings
      summary: Bulk delete meetings
  /meetings/start:
    post:
      operationId: routes_meetings_start_meeting_handler
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/StartMeetingRequest'
        required: true
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/MeetingRecord'
      tags:
      - Meetings
      summary: Start a manual meeting
  /meetings/stop:
    post:
      operationId: routes_meetings_stop_meeting_handler
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/MeetingRecord'
      tags:
      - Meetings
      summary: Stop a manual meeting
  /meetings/{id}:
    get:
      operationId: routes_meetings_get_meeting_handler
      parameters:
      - name: id
        schema:
          type: integer
        in: path
        required: true
        style: simple
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/MeetingRecord'
      tags:
      - Meetings
      summary: Get meeting by ID
    put:
      operationId: routes_meetings_update_meeting_handler
      parameters:
      - name: id
        schema:
          type: integer
        in: path
        required: true
        style: simple
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/UpdateMeetingRequest'
        required: true
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/MeetingRecord'
      tags:
      - Meetings
      summary: Update meeting
    delete:
      operationId: routes_meetings_delete_meeting_handler
      parameters:
      - name: id
        schema:
          type: integer
        in: path
        required: true
        style: simple
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: object
      tags:
      - Meetings
      summary: Delete meeting
components:
  schemas:
    BulkDeleteMeetingsRequest:
      type: object
      properties:
        ids:
          type: array
          items:
            type: integer
      required:
      - ids
    UpdateMeetingRequest:
      type: object
      properties:
        meeting_start:
          type:
          - string
          - 'null'
        meeting_end:
          type:
          - string
          - 'null'
        title:
          type:
          - string
          - 'null'
        attendees:
          type:
          - string
          - 'null'
        note:
          type:
          - string
          - 'null'
        meeting_app:
          type:
          - string
          - 'null'
      required:
      - meeting_start
      - meeting_end
      - title
      - attendees
      - note
      - meeting_app
    MergeMeetingsRequest:
      type: object
      properties:
        ids:
          type: array
          items:
            type: integer
      required:
      - ids
    StartMeetingRequest:
      type: object
      properties:
        app:
          type:
          - string
          - 'null'
        title:
          type:
          - string
          - 'null'
        attendees:
          type:
          - string
          - 'null'
      required:
      - app
      - title
      - attendees
    MeetingRecord:
      type: object
      properties:
        id:
          type: integer
        meeting_start:
          type: string
        meeting_end:
          type:
          - string
          - 'null'
        meeting_app:
          type: string
        title:
          type:
          - string
          - 'null'
        attendees:
          type:
          - string
          - 'null'
        note:
          type:
          - string
          - 'null'
        detection_source:
          type: string
        created_at:
          type: string
      required:
      - id
      - meeting_start
      - meeting_end
      - meeting_app
      - title
      - attendees
      - note
      - detection_source
      - created_at