Skip to main content
GET
/
memories
List Memories
curl --request GET \
  --url https://api.tess.im/memories \
  --header 'Authorization: Bearer <token>'

Documentation Index

Fetch the complete documentation index at: https://docs.tess.im/llms.txt

Use this file to discover all available pages before exploring further.

Code Examples

curl --request GET \
  --url 'https://api.tess.im/memories' \
  --header 'Authorization: Bearer YOUR_API_KEY'

Query Parameters

page
integer
Page number 1 - -
per_page
integer
Items per page 10 1 50
collection_id
integer
Filter by collection ID - - -

Response

{
"message": "Memories fetched successfully!",
"memories": [
  {
    "id": 9,
    "user_id": 1,
    "memory": "Example memory content",
    "credits": 0,
    "collection_id": 1
  }
],
"meta": {
  "current_page": 1,
  "last_page": 2,
  "total": 8
}
}