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
}
}
Get detailed information about a specific 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
}
}
Show Note
online, in-person, podcastidle, recording,
transcript-processing, recorded-not-summarized, summarizing,
completedonly-me, workspace, publicShow CalendarEvent
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
}
}