curl --request GET \
--url https://api.mem.ai/v2/notes/{note_id} \
--header 'Authorization: Bearer <token>'{
"attachment_metadata": [
{
"attachment_id": "2511691e-cfd2-47bc-a4b6-0104234ee1af",
"attachment_kind": "pdf",
"image_type": null,
"ocr_text": null,
"page_count": 7,
"suggested_search": "product launch requirements",
"summary": "Product requirements and launch milestones.",
"visual_description": null
}
],
"audio_recording_ids": [
"78ff64bc-09e3-4fd7-a4b9-53c258f35619"
],
"collection_ids": [
"59508b41-8770-4855-aa37-302b1e09aee7",
"026b426c-14fb-4f22-8d98-7a9121bfaec8"
],
"content": "# Sales Call with Acme Corp\n\nContact: John Smith (john@acme.com)\n\nInterested in enterprise plan. Follow up next week.\n\n## Action Items\n- Schedule follow-up call next week\n- Send enterprise pricing information\n\n## Key Points\n- Interested in enterprise plan\n- Contact: John Smith (john@acme.com)",
"created_at": "2025-04-11T04:47:14.457Z",
"id": "5e29c8a2-c73b-476b-9311-e2579712d4b1",
"request_id": "api-request-036ed6c7-de00-459f-a89b-43d26aafe522",
"title": "Sales Call with Acme Corp",
"trashed_at": null,
"updated_at": "2025-04-11T04:47:19.702Z",
"version": 4
}Read Note
Fetch the full current state of a single note by ID.
If the note is in trash, the response still returns the note and includes trashed_at.
For discovery flows, use GET /v2/notes or POST /v2/notes/search.
curl --request GET \
--url https://api.mem.ai/v2/notes/{note_id} \
--header 'Authorization: Bearer <token>'{
"attachment_metadata": [
{
"attachment_id": "2511691e-cfd2-47bc-a4b6-0104234ee1af",
"attachment_kind": "pdf",
"image_type": null,
"ocr_text": null,
"page_count": 7,
"suggested_search": "product launch requirements",
"summary": "Product requirements and launch milestones.",
"visual_description": null
}
],
"audio_recording_ids": [
"78ff64bc-09e3-4fd7-a4b9-53c258f35619"
],
"collection_ids": [
"59508b41-8770-4855-aa37-302b1e09aee7",
"026b426c-14fb-4f22-8d98-7a9121bfaec8"
],
"content": "# Sales Call with Acme Corp\n\nContact: John Smith (john@acme.com)\n\nInterested in enterprise plan. Follow up next week.\n\n## Action Items\n- Schedule follow-up call next week\n- Send enterprise pricing information\n\n## Key Points\n- Interested in enterprise plan\n- Contact: John Smith (john@acme.com)",
"created_at": "2025-04-11T04:47:14.457Z",
"id": "5e29c8a2-c73b-476b-9311-e2579712d4b1",
"request_id": "api-request-036ed6c7-de00-459f-a89b-43d26aafe522",
"title": "Sales Call with Acme Corp",
"trashed_at": null,
"updated_at": "2025-04-11T04:47:19.702Z",
"version": 4
}Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Path Parameters
UUID of the note to read. Use an ID returned by create/list/search. The caller must be able to access this note.
Response
OK
Compact metadata for PDF and image attachments embedded in this note.
Use attachment_id with GET /v2/note-attachments/{attachment_id}/download-url.
Show child attributes
Show child attributes
Audio Recording UUIDs currently associated with this note.
Collection UUIDs currently associated with this note.
Full markdown content stored for the note.
Creation timestamp for the note in ISO 8601 format.
UUID of the requested note.
Identifier for this API request. Useful for tracing and support.
Current note title.
Timestamp for when the note was moved to trash, or null when the note is active.
Trashed notes are still returned by GET /v2/notes/{note_id}.
Last modification timestamp for the note in ISO 8601 format.
Current note content document version.