Screenpipe Speakers API

Speaker identification and management

Operations 9

GET /speakers/unnamed List unnamed speakers #
POST /speakers/update Update speaker name #
GET /speakers/search Search speakers #
POST /speakers/delete Delete speaker #
POST /speakers/hallucination Mark speaker as hallucination #
POST /speakers/merge Merge speakers #
GET /speakers/similar Find similar speakers #
POST /speakers/reassign Reassign speaker #
POST /speakers/undo-reassign Undo speaker reassignment #

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-speakers-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-speakers-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Screenpipe Activity Speakers 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: Speakers
  description: Speaker identification and management
paths:
  /speakers/unnamed:
    get:
      operationId: routes_speakers_get_unnamed_speakers_handler
      parameters:
      - name: limit
        schema:
          type: integer
        in: query
        style: form
      - name: offset
        schema:
          type: integer
        in: query
        style: form
      - name: speaker_ids
        schema:
          type:
          - array
          - 'null'
          items:
            type: integer
        in: query
        style: form
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Speaker'
      tags:
      - Speakers
      summary: List unnamed speakers
      description: Returns speakers that haven't been identified/named yet.
  /speakers/update:
    post:
      operationId: routes_speakers_update_speaker_handler
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/UpdateSpeakerRequest'
        required: true
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Speaker'
      tags:
      - Speakers
      summary: Update speaker name
  /speakers/search:
    get:
      operationId: routes_speakers_search_speakers_handler
      parameters:
      - name: name
        schema:
          type:
          - string
          - 'null'
        in: query
        style: form
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Speaker'
      tags:
      - Speakers
      summary: Search speakers
  /speakers/delete:
    post:
      operationId: routes_speakers_delete_speaker_handler
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/DeleteSpeakerRequest'
        required: true
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: object
      tags:
      - Speakers
      summary: Delete speaker
  /speakers/hallucination:
    post:
      operationId: routes_speakers_mark_as_hallucination_handler
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/MarkAsHallucinationRequest'
        required: true
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: object
      tags:
      - Speakers
      summary: Mark speaker as hallucination
      description: Flag a detected speaker as a false positive / hallucination.
  /speakers/merge:
    post:
      operationId: routes_speakers_merge_speakers_handler
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/MergeSpeakersRequest'
        required: true
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: object
      tags:
      - Speakers
      summary: Merge speakers
      description: Merge two speaker identities into one.
  /speakers/similar:
    get:
      operationId: routes_speakers_get_similar_speakers_handler
      parameters:
      - name: speaker_id
        schema:
          type: integer
        in: query
        style: form
      - name: limit
        schema:
          type: integer
        in: query
        style: form
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Speaker'
      tags:
      - Speakers
      summary: Find similar speakers
  /speakers/reassign:
    post:
      operationId: routes_speakers_reassign_speaker_handler
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ReassignSpeakerRequest'
        required: true
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ReassignSpeakerResponse'
      tags:
      - Speakers
      summary: Reassign speaker
      description: Reassign audio segments from one speaker to another.
  /speakers/undo-reassign:
    post:
      operationId: routes_speakers_undo_speaker_reassign_handler
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/UndoSpeakerReassignRequest'
        required: true
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/UndoSpeakerReassignResponse'
      tags:
      - Speakers
      summary: Undo speaker reassignment
components:
  schemas:
    MergeSpeakersRequest:
      type: object
      properties:
        speaker_to_keep_id:
          type: integer
        speaker_to_merge_id:
          type: integer
      required:
      - speaker_to_keep_id
      - speaker_to_merge_id
    UndoSpeakerReassignRequest:
      type: object
      properties:
        old_assignments:
          type: array
          items:
            $ref: '#/components/schemas/SpeakerOldAssignment'
      required:
      - old_assignments
    UndoSpeakerReassignResponse:
      type: object
      properties:
        restored:
          type: integer
      required:
      - restored
    ReassignSpeakerResponse:
      type: object
      properties:
        new_speaker_id:
          type: integer
        new_speaker_name:
          type: string
        transcriptions_updated:
          type: integer
        embeddings_moved:
          type: integer
        old_assignments:
          type: array
          items:
            $ref: '#/components/schemas/SpeakerOldAssignment'
      required:
      - new_speaker_id
      - new_speaker_name
      - transcriptions_updated
      - embeddings_moved
      - old_assignments
    ReassignSpeakerRequest:
      type: object
      properties:
        audio_chunk_id:
          type: integer
        new_speaker_name:
          type: string
        propagate_similar:
          type: boolean
      required:
      - audio_chunk_id
      - new_speaker_name
      - propagate_similar
    UpdateSpeakerRequest:
      type: object
      properties:
        id:
          type: integer
        name:
          type:
          - string
          - 'null'
        metadata:
          type:
          - string
          - 'null'
      required:
      - id
      - name
      - metadata
    MarkAsHallucinationRequest:
      type: object
      properties:
        speaker_id:
          type: integer
      required:
      - speaker_id
    Speaker:
      type: object
      properties:
        id:
          type: integer
        name:
          type: string
        metadata:
          type: string
      required:
      - id
      - name
      - metadata
    SpeakerOldAssignment:
      type: object
      properties:
        transcription_id:
          type: integer
        old_speaker_id:
          type: integer
      required:
      - transcription_id
      - old_speaker_id
    DeleteSpeakerRequest:
      type: object
      properties:
        id:
          type: integer
      required:
      - id