Skip to main content
GET
/
v1
/
notes
/
{id}

curl --request GET \
 --url https://api.caret.so/v1/notes/note_123456789 \
 --header 'X-API-Key: <your_api_key>'

{
  "note": {
    "id": "note_123456789",
    "title": "Weekly Team Sync",
    "kind": "online",
    "status": "completed",
    "createdAt": "2024-01-28T10:00:00Z",
    "updatedAt": "2024-01-28T11:30:00Z",
    "visibility": "workspace",
    "tags": [
      {
        "id": "fld_123",
        "name": "Sales",
        "color": "#4A90E2"
      }
    ],
    "participants": [],
    "totalDurationSec": 3600,
    "userWrittenNote": "",
    "enhancedNote": "Meeting summary content...",
    "summary": "Meeting summary content...",
    "transcripts": [
      {
        "speaker": "John Doe",
        "text": "Let's start with the weekly update.",
        "startTimestamp": "00:00:05",
        "endTimestamp": "00:00:12"
      }
    ],
    "calendarEvent": null,
    "inputLanguage": "en",
    "translationLanguage": null,
    "meetingApp": null
  }
}

Path Parameters

id
string
required
The unique identifier of the note

Response

note
Note

curl --request GET \
 --url https://api.caret.so/v1/notes/note_123456789 \
 --header 'X-API-Key: <your_api_key>'

{
  "note": {
    "id": "note_123456789",
    "title": "Weekly Team Sync",
    "kind": "online",
    "status": "completed",
    "createdAt": "2024-01-28T10:00:00Z",
    "updatedAt": "2024-01-28T11:30:00Z",
    "visibility": "workspace",
    "tags": [
      {
        "id": "fld_123",
        "name": "Sales",
        "color": "#4A90E2"
      }
    ],
    "participants": [],
    "totalDurationSec": 3600,
    "userWrittenNote": "",
    "enhancedNote": "Meeting summary content...",
    "summary": "Meeting summary content...",
    "transcripts": [
      {
        "speaker": "John Doe",
        "text": "Let's start with the weekly update.",
        "startTimestamp": "00:00:05",
        "endTimestamp": "00:00:12"
      }
    ],
    "calendarEvent": null,
    "inputLanguage": "en",
    "translationLanguage": null,
    "meetingApp": null
  }
}