Events.com Agent Memory API

The Agent Memory API from Events.com — 4 operation(s) for agent memory.

Operations 6

GET /ai/api/v2/agent-memory/memories List Memories #
POST /ai/api/v2/agent-memory/memories Add Memory #
POST /ai/api/v2/agent-memory/memories/search Search Memories #
PUT /ai/api/v2/agent-memory/memories/{memory_id} Update Memory #
DELETE /ai/api/v2/agent-memory/memories/{memory_id} Delete Memory #
POST /ai/api/v2/agent-memory/memories/{memory_id}/publish Publish 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/eventscom-agent-memory-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 email required.

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

OpenAPI Specification

eventscom-agent-memory-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Eventscom Agent Memory API
  version: 1.0.36
  description: 'Operations tagged Agent Memory across 2 of this provider''s published API definitions: eventscom-agent-memory-api-openapi.yml, eventscom-datagol-ai-openapi.yml. Each path carries the servers of the definition it was published in.'
servers:
- url: https://datagol-be.events.com/
  description: Base URL declared by the provider in apis.yml (roadmap#122).
tags:
- name: Agent Memory
paths:
  /ai/api/v2/agent-memory/memories:
    get:
      tags:
      - Agent Memory
      summary: List Memories
      operationId: list_memories_ai_api_v2_agent_memory_memories_get
      parameters:
      - name: scope
        in: query
        required: true
        schema:
          type: string
          description: 'Scope of the memories to list: company, user, or agent'
          title: Scope
        description: 'Scope of the memories to list: company, user, or agent'
      - name: agent_id
        in: query
        required: false
        schema:
          anyOf:
          - type: string
          - type: 'null'
          description: Optional agent ID when scope is 'agent'; when omitted, returns all agent-scoped memories for the company
          title: Agent Id
        description: Optional agent ID when scope is 'agent'; when omitted, returns all agent-scoped memories for the company
      - name: include_drafts
        in: query
        required: false
        schema:
          type: boolean
          description: If true, include draft memories in the response.
          default: false
          title: Include Drafts
        description: If true, include draft memories in the response.
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
    post:
      tags:
      - Agent Memory
      summary: Add Memory
      operationId: add_memory_ai_api_v2_agent_memory_memories_post
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/MemoryRequestUI'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
    servers:
    - url: https://datagol-be.events.com/
      description: Base URL declared by the provider in apis.yml (roadmap#122).
  /ai/api/v2/agent-memory/memories/search:
    post:
      tags:
      - Agent Memory
      summary: Search Memories
      description: 'Search memories using a JSON body only (no query params).


        The body can contain:

        - query, top_k, metadata

        - user_id, org_id, agent_id, include_drafts'
      operationId: search_memories_ai_api_v2_agent_memory_memories_search_post
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/SearchMemoriesRequest'
        required: true
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
    servers:
    - url: https://datagol-be.events.com/
      description: Base URL declared by the provider in apis.yml (roadmap#122).
  /ai/api/v2/agent-memory/memories/{memory_id}:
    put:
      tags:
      - Agent Memory
      summary: Update Memory
      operationId: update_memory_ai_api_v2_agent_memory_memories__memory_id__put
      parameters:
      - name: memory_id
        in: path
        required: true
        schema:
          type: string
          title: Memory Id
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              additionalProperties: true
              title: Payload
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
    delete:
      tags:
      - Agent Memory
      summary: Delete Memory
      operationId: delete_memory_ai_api_v2_agent_memory_memories__memory_id__delete
      parameters:
      - name: memory_id
        in: path
        required: true
        schema:
          type: string
          title: Memory Id
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
    servers:
    - url: https://datagol-be.events.com/
      description: Base URL declared by the provider in apis.yml (roadmap#122).
  /ai/api/v2/agent-memory/memories/{memory_id}/publish:
    post:
      tags:
      - Agent Memory
      summary: Publish Memory
      operationId: publish_memory_ai_api_v2_agent_memory_memories__memory_id__publish_post
      parameters:
      - name: memory_id
        in: path
        required: true
        schema:
          type: string
          title: Memory Id
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
    servers:
    - url: https://datagol-be.events.com/
      description: Base URL declared by the provider in apis.yml (roadmap#122).
components:
  schemas:
    SearchMemoriesRequest:
      properties:
        query:
          type: string
          title: Query
        top_k:
          type: integer
          title: Top K
          default: 5
        metadata:
          anyOf:
          - additionalProperties: true
            type: object
          - type: 'null'
          title: Metadata
        agent_id:
          anyOf:
          - type: string
          - type: 'null'
          title: Agent Id
        include_drafts:
          type: boolean
          title: Include Drafts
          default: false
      type: object
      required:
      - query
      title: SearchMemoriesRequest
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
            - type: string
            - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
      - loc
      - msg
      - type
      title: ValidationError
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    MemoryRequestUI:
      properties:
        scope:
          type: string
          title: Scope
          description: 'Scope of the memory: company, user, or agent'
        agent_id:
          anyOf:
          - type: string
          - type: 'null'
          title: Agent Id
          description: Agent ID for agent-scoped memories; ignored for other scopes
        message:
          type: string
          title: Message
          description: Message for the memory
        metadata:
          additionalProperties: true
          type: object
          title: Metadata
          description: Metadata of the memory
        draft:
          type: boolean
          title: Draft
          description: Whether the memory is a draft
      type: object
      required:
      - scope
      - message
      - metadata
      - draft
      title: MemoryRequestUI
x-refined-from:
- eventscom-agent-memory-api-openapi.yml
- eventscom-datagol-ai-openapi.yml