Skip to main content
GET
/
v2
/
collections
cURL
curl "https://api.mem.ai/v2/collections?limit=20" \
     --header "Authorization: Bearer $MEM_API_KEY"
{
  "next_page": "eyJvcmRlcl9ieSI6InVwZGF0ZWRfYXQiLCJ2YWx1ZSI6IjIwMjUtMDUtMDRUMTQ6MjA6MTFaIiwiaWQiOiIwMThmOGQwZC01YTNjLTdhZmMtODMyMS0yZjZmNmUwZmVmYWIifQ",
  "request_id": "api-request-018f8d0d-5a3c-7afc-8321-2f6f6e0fefab",
  "results": [
    {
      "created_at": "2025-05-01T10:05:45Z",
      "description": "Initiatives and plans for Q1",
      "id": "018f8d0d-5a3c-7afc-8321-2f6f6e0fefab",
      "title": "Project Phoenix",
      "updated_at": "2025-05-04T14:20:11Z"
    }
  ],
  "total": 24
}

Authorizations

Authorization
string
header
required

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

Query Parameters

limit
integer | null
default:50

Maximum number of collections to return. Defaults to 50.

page
string | null

Opaque cursor returned from a previous request. Omit for the first page.

order_by
enum<string>
default:updated_at

Sort order for results. Choose between 'updated_at' (default) or 'created_at'.

Available options:
created_at,
updated_at

Response

200 - application/json

OK

request_id
string
required
results
CollectionListItemResponseSchema · object[]
required
total
integer
required
next_page
string | null