GET
/
memories
curl --request GET \
  --url https://ragapi.sno.ai/v1/memories \
  --header 'Authorization: Bearer <token>'
{
  "items": [
    {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "title": "<string>",
      "url": "<string>",
      "content": "<string>",
      "type": "page",
      "createdAt": "2023-11-07T05:31:56Z",
      "spaces": [
        "3c90c3cc-0d44-4b50-8888-8dd25736052a"
      ]
    }
  ],
  "total": 123
}

Authorizations

Authorization
string
header
required

Enter your API key as a Bearer token. Example: 'Bearer YOUR_API_KEY'

Query Parameters

start
integer
default:0

Pagination offset

count
integer
default:10

Number of items

spaceId
string

Filter by space ID

Response

200
application/json

A list of memories

The response is of type object.