POST
/
api
/
buckets
Create a new bucket
curl --request POST \
  --url https://www.memoryplugin.com/api/buckets \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "name": "<string>",
  "source": "<string>"
}'
{
  "message": "Bucket created successfully"
}

Authorizations

Authorization
string
header
required

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

Body

application/json
name
string
required

Name of the bucket to create

source
string

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

Response

Bucket created successfully

message
enum<string>
Available options:
Bucket created successfully