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

200
application/json

List of memory buckets

The response is of type object[].