Memorize content to Rememberizer
Saves a document with a name and content
POST /api/v1/documents/memorize/ HTTP/1.1
Host: api.rememberizer.ai
Content-Type: application/json
Accept: */*
Content-Length: 32
{
"name": "text",
"content": "text"
}
{
"data": [
{}
],
"message": "text",
"code": "text"
}
Example Requests
curl -X POST \
https://api.rememberizer.ai/api/v1/documents/memorize/ \
-H "Authorization: Bearer YOUR_JWT_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"name": "Important Information",
"content": "This is important content that I want Rememberizer to remember."
}'
Request Parameters
name
string
Required. A name for the content being stored.
content
string
Required. The text content to store in Rememberizer.
Response
A successful request returns a 201 Created status code with no response body.
Error Responses
400
Bad Request - Missing required fields or invalid parameters
401
Unauthorized - Invalid or missing authentication
500
Internal Server Error
Use Cases
This endpoint is particularly useful for:
Storing important notes or information that you want to access later
Adding content that isn't available through integrated data sources
Manually adding information that needs to be searchable
Adding contextual information for LLMs accessing your knowledge base
The stored content becomes searchable through the search endpoints and can be included in mementos.
Last updated