GET
/
api
/
buckets
List all memory buckets
curl --request GET \
  --url https://www.memoryplugin.com/api/buckets \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": "<string>",
    "name": "<string>",
    "description": "<string>",
    "memoryCount": 123
  }
]

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

v
number
default:2

API version - current is 2

source
string

Client source identifier (e.g., 'chatgpt' for ChatGPT requests)

Response

List of memory buckets

id
string
required

Unique identifier for the bucket

name
string
required

Display name of the bucket

memoryCount
integer
required

Number of memories in this bucket

description
string

Optional description of the bucket