Skip to main content
GET
/
v2
/
notes
/
{note_id}
/
related-notes
cURL
curl "https://api.mem.ai/v2/notes/01961d40-7a67-7049-a8a6-d5638cbaaeb9/related-notes?limit=10" \
     --header "Authorization: Bearer $MEM_API_KEY"
{
  "request_id": "api-request-018f8d0d-5a3c-7afc-8321-2f6f6e0fefab",
  "results": [
    {
      "collection_ids": [
        "59508b41-8770-4855-aa37-302b1e09aee7"
      ],
      "collections": [
        {
          "created_at": "2025-03-18T11:00:00Z",
          "description": "Planning documents and project notes.",
          "id": "59508b41-8770-4855-aa37-302b1e09aee7",
          "is_shared": false,
          "note_count": 8,
          "title": "Work Projects",
          "updated_at": "2025-04-22T16:12:34Z"
        }
      ],
      "created_at": "2025-03-18T11:00:00Z",
      "id": "018f8d0d-5a3c-7afc-8321-2f6f6e0fefab",
      "preview": "# Project Phoenix Planning\n\nLaunch goals and milestones.",
      "score": 0.91,
      "snippet": "Launch goals and milestones.",
      "title": "Project Phoenix Planning",
      "updated_at": "2025-04-22T16:12:34Z"
    }
  ],
  "total": 1
}

Documentation Index

Fetch the complete documentation index at: https://docs.mem.ai/llms.txt

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

Authorizations

Authorization
string
header
required

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

Path Parameters

note_id
string<uuid>
required

UUID of the source note. The caller must be able to access this note.

Query Parameters

limit
integer
default:10

Maximum number of related notes to return. Default is 10; valid range is 1 to 20.

Required range: 1 <= x <= 20

Response

200 - application/json

OK

request_id
string
required

Identifier for this API request. Useful for tracing and support.

results
RelatedNoteItemResponseSchema · object[]
required

Related notes ordered by vector similarity.

total
integer
required

Number of related notes returned.