Skip to main content

List Memory Collections

GET /api/memory-collections

Retrieves a paginated list of memory collections for the authenticated user.

Code Examples

curl --request GET \
--url 'https://tess.pareto.io/api/memory-collections?page=1&per_page=10&search=example' \
--header 'Authorization: Bearer YOUR_API_KEY'

Query Parameters

ParameterTypeRequiredDescriptionDefaultMinMax
pageintegerNoPage number1--
per_pageintegerNoItems per page10150
searchstringNoSearch term to filter collections---

Response

{
"message": "success",
"collections": [
{
"id": 1,
"user_id": 1,
"name": "default",
"display_name": "My Memories"
}
],
"meta": {
"current_page": 1,
"last_page": 1,
"total": 1
}
}

Try it out!

Authentication

This endpoint requires Bearer token authentication.

Test Endpoint