University of Amsterdam memory management API

The memory management API from University of Amsterdam — 2 operation(s) for memory management.

Operations 5

POST /v1/memory Create Memory #
GET /v1/memory List Memory #
GET /v1/memory/{key} Get Memory #
PUT /v1/memory/{key} Upsert Memory #
DELETE /v1/memory/{key} 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/university-of-amsterdam-memory-management-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

university-of-amsterdam-memory-management-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: LiteLLM memory management API
  description: "Enterprise Edition \n\nProxy Server to call 100+ LLMs in the OpenAI format. [**Customize Swagger Docs**](https://docs.litellm.ai/docs/proxy/enterprise#swagger-docs---custom-routes--branding)\n\n\U0001F449 [```LiteLLM Admin Panel on /ui```](/ui). Create, Edit Keys with SSO. Having issues? Try [```Fallback Login```](/fallback/login)\n\n\U0001F4B8 [```LiteLLM Model Cost Map```](https://models.litellm.ai/).\n\n\U0001F50E [```LiteLLM Model Hub```](/ui/model_hub_table). See available models on the proxy. [**Docs**](https://docs.litellm.ai/docs/proxy/ai_hub)"
  version: 1.95.0
  x-operator: institution
  x-provenance:
    method: probed
    source: https://llmproxy.uva.nl/openapi.json
    retrieved: '2026-08-19'
    note: Document is generated by the LiteLLM proxy software the University of Amsterdam self-hosts; the deployment, the key issuance and the host (llmproxy.uva.nl, UvA Azure) are the institution's. servers[] added by API Evangelist because the served document omits it; nothing else altered.
servers:
- url: https://llmproxy.uva.nl
  description: University of Amsterdam / Amsterdam University of Applied Sciences shared AI gateway
tags:
- name: memory management
paths:
  /v1/memory:
    post:
      tags:
      - memory management
      summary: Create Memory
      description: Create a new memory entry for the caller (or, for admins, any scope).
      operationId: create_memory_v1_memory_post
      security:
      - APIKeyHeader: []
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/MemoryCreateRequest'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/LiteLLM_MemoryRow'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
    get:
      tags:
      - memory management
      summary: List Memory
      description: List memory entries visible to the caller.
      operationId: list_memory_v1_memory_get
      security:
      - APIKeyHeader: []
      parameters:
      - name: key
        in: query
        required: false
        schema:
          anyOf:
          - type: string
          - type: 'null'
          description: Filter by exact key match.
          title: Key
        description: Filter by exact key match.
      - name: key_prefix
        in: query
        required: false
        schema:
          anyOf:
          - type: string
          - type: 'null'
          description: Filter by key prefix (Redis-style namespace scan). Mutually exclusive with `key`; if both are provided, `key_prefix` wins.
          title: Key Prefix
        description: Filter by key prefix (Redis-style namespace scan). Mutually exclusive with `key`; if both are provided, `key_prefix` wins.
      - name: page
        in: query
        required: false
        schema:
          type: integer
          minimum: 1
          default: 1
          title: Page
      - name: page_size
        in: query
        required: false
        schema:
          type: integer
          maximum: 500
          minimum: 1
          default: 50
          title: Page Size
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/MemoryListResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
  /v1/memory/{key}:
    get:
      tags:
      - memory management
      summary: Get Memory
      description: Get a single memory entry by key, scoped to the caller.
      operationId: get_memory_v1_memory__key__get
      security:
      - APIKeyHeader: []
      parameters:
      - name: key
        in: path
        required: true
        schema:
          type: string
          title: Key
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/LiteLLM_MemoryRow'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
    put:
      tags:
      - memory management
      summary: Upsert Memory
      description: 'Upsert a memory entry by key within the caller''s scope.


        If no row exists for (key, caller.user_id, caller.team_id), create one.

        If one exists, update the value/metadata fields that were provided.'
      operationId: upsert_memory_v1_memory__key__put
      security:
      - APIKeyHeader: []
      parameters:
      - name: key
        in: path
        required: true
        schema:
          type: string
          title: Key
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/MemoryUpdateRequest'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/LiteLLM_MemoryRow'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
    delete:
      tags:
      - memory management
      summary: Delete Memory
      description: Delete a memory entry by key, scoped to the caller.
      operationId: delete_memory_v1_memory__key__delete
      security:
      - APIKeyHeader: []
      parameters:
      - name: key
        in: path
        required: true
        schema:
          type: string
          title: Key
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/MemoryDeleteResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    MemoryUpdateRequest:
      properties:
        value:
          anyOf:
          - type: string
          - type: 'null'
          title: Value
        metadata:
          anyOf:
          - {}
          - type: 'null'
          title: Metadata
        user_id:
          anyOf:
          - type: string
          - type: 'null'
          title: User Id
        team_id:
          anyOf:
          - type: string
          - type: 'null'
          title: Team Id
      type: object
      title: MemoryUpdateRequest
    MemoryListResponse:
      properties:
        memories:
          items:
            $ref: '#/components/schemas/LiteLLM_MemoryRow'
          type: array
          title: Memories
        total:
          type: integer
          title: Total
      type: object
      required:
      - memories
      - total
      title: MemoryListResponse
    LiteLLM_MemoryRow:
      properties:
        memory_id:
          type: string
          title: Memory Id
        key:
          type: string
          title: Key
        value:
          type: string
          title: Value
        metadata:
          anyOf:
          - {}
          - type: 'null'
          title: Metadata
        user_id:
          anyOf:
          - type: string
          - type: 'null'
          title: User Id
        team_id:
          anyOf:
          - type: string
          - type: 'null'
          title: Team Id
        created_at:
          anyOf:
          - type: string
            format: date-time
          - type: 'null'
          title: Created At
        created_by:
          anyOf:
          - type: string
          - type: 'null'
          title: Created By
        updated_at:
          anyOf:
          - type: string
            format: date-time
          - type: 'null'
          title: Updated At
        updated_by:
          anyOf:
          - type: string
          - type: 'null'
          title: Updated By
      type: object
      required:
      - memory_id
      - key
      - value
      title: LiteLLM_MemoryRow
    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
    MemoryCreateRequest:
      properties:
        key:
          type: string
          title: Key
          description: Memory key (acts as the namespace in the URL).
        value:
          type: string
          title: Value
          description: Memory content. Typically markdown/text for LLM context.
        metadata:
          anyOf:
          - {}
          - type: 'null'
          title: Metadata
          description: Optional JSON metadata (tags, structured fields).
        user_id:
          anyOf:
          - type: string
          - type: 'null'
          title: User Id
          description: Scope to this user. Defaults to the caller's user_id.
        team_id:
          anyOf:
          - type: string
          - type: 'null'
          title: Team Id
          description: Scope to this team. Defaults to the caller's team_id.
      type: object
      required:
      - key
      - value
      title: MemoryCreateRequest
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    MemoryDeleteResponse:
      properties:
        key:
          type: string
          title: Key
        deleted:
          type: boolean
          title: Deleted
      type: object
      required:
      - key
      - deleted
      title: MemoryDeleteResponse
  securitySchemes:
    APIKeyHeader:
      type: apiKey
      description: Bearer token
      in: header
      name: x-litellm-api-key