Screenpipe Memories API

AI-extracted knowledge from screen activity

Operations 5

GET /memories List memories #
POST /memories Create memory #
GET /memories/{id} Get memory by ID #
PUT /memories/{id} Update memory #
DELETE /memories/{id} Delete memory #

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-memories-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-memories-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Screenpipe Activity Memories 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: Memories
  description: AI-extracted knowledge from screen activity
paths:
  /memories:
    get:
      operationId: routes_memories_list_memories_handler
      parameters:
      - name: q
        schema:
          type:
          - string
          - 'null'
        in: query
        style: form
      - name: source
        schema:
          type:
          - string
          - 'null'
        in: query
        style: form
      - name: tags
        schema:
          type:
          - string
          - 'null'
        in: query
        style: form
      - name: min_importance
        schema:
          type:
          - number
          - 'null'
        in: query
        style: form
      - 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
      - name: order_by
        schema:
          type:
          - string
          - 'null'
        in: query
        style: form
      - name: order_dir
        schema:
          type:
          - string
          - 'null'
        in: query
        style: form
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/MemoryListResponse'
      tags:
      - Memories
      summary: List memories
      description: Returns saved AI memories / knowledge extracted from screen activity.
    post:
      operationId: routes_memories_create_memory_handler
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CreateMemoryRequest'
        required: true
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/MemoryResponse'
      tags:
      - Memories
      summary: Create memory
  /memories/{id}:
    get:
      operationId: routes_memories_get_memory_handler
      parameters:
      - name: id
        schema:
          type: integer
        in: path
        required: true
        style: simple
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/MemoryResponse'
      tags:
      - Memories
      summary: Get memory by ID
    put:
      operationId: routes_memories_update_memory_handler
      parameters:
      - name: id
        schema:
          type: integer
        in: path
        required: true
        style: simple
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/UpdateMemoryRequest'
        required: true
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/MemoryResponse'
      tags:
      - Memories
      summary: Update memory
    delete:
      operationId: routes_memories_delete_memory_handler
      parameters:
      - name: id
        schema:
          type: integer
        in: path
        required: true
        style: simple
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: object
      tags:
      - Memories
      summary: Delete memory
components:
  schemas:
    MemoryResponse:
      type: object
      properties:
        id:
          type: integer
        content:
          type: string
        source:
          type: string
        source_context:
          type:
          - object
          - 'null'
        tags:
          type: array
          items:
            type: string
        importance:
          type: number
        frame_id:
          type:
          - integer
          - 'null'
        created_at:
          type: string
        updated_at:
          type: string
      required:
      - id
      - content
      - source
      - source_context
      - tags
      - importance
      - frame_id
      - created_at
      - updated_at
    MemoryListResponse:
      type: object
      properties:
        data:
          type: array
          items:
            $ref: '#/components/schemas/MemoryListItem'
        pagination:
          $ref: '#/components/schemas/PaginationInfo'
      required:
      - data
      - pagination
    UpdateMemoryRequest:
      type: object
      properties:
        content:
          type:
          - string
          - 'null'
        tags:
          type:
          - array
          - 'null'
          items:
            type: string
        importance:
          type:
          - number
          - 'null'
        source_context:
          type:
          - object
          - 'null'
      required:
      - content
      - tags
      - importance
      - source_context
    PaginationInfo:
      type: object
      properties:
        limit:
          type: integer
        offset:
          type: integer
        total:
          type: integer
      required:
      - limit
      - offset
      - total
    MemoryListItem:
      type: object
      properties:
        id:
          type: integer
        content:
          type: string
        source:
          type: string
        tags:
          type: array
          items:
            type: string
        importance:
          type: number
        frame_id:
          type:
          - integer
          - 'null'
        created_at:
          type: string
        updated_at:
          type: string
      required:
      - id
      - content
      - source
      - tags
      - importance
      - frame_id
      - created_at
      - updated_at
    CreateMemoryRequest:
      type: object
      properties:
        content:
          type: string
        source:
          type: string
        source_context:
          type:
          - object
          - 'null'
        tags:
          type: array
          items:
            type: string
        importance:
          type: number
        frame_id:
          type:
          - integer
          - 'null'
      required:
      - content
      - source
      - source_context
      - tags
      - importance
      - frame_id