Get Note
Get detailed information about a specific note
Retrieve detailed information about a specific note by its ID.
Path Parameters
The unique identifier of the note
Response
Note details
Unique identifier for the note
Title of the note
Type of note. Options: online
, in-person
, podcast
Status of the note. Options: idle
, recording
, postprocessing
,
completed
ISO8601 timestamp when the note was created
ISO8601 timestamp when the note was last updated
Visibility setting. Options: private
, workspace
, shared
Array of participants in the meeting
Participant’s name
Participant’s email
URL to the participant’s profile image
Name of the participant’s company/account
Domain of the participant’s company/account
URL to the participant’s company/account logo
Total duration of the meeting in seconds
Note content written by the user in markdown format
AI-enhanced version of the user’s notes with improved formatting and clarity
Summary of the meeting
Example Request
curl -X GET 'https://api.caret.so/v1/notes/01887270-12d4-7da0-b95c-9a9e9ebc3b13' \
-H 'Authorization: Bearer {api_key}'
Example Response
{
"note": {
"id": "01887270-12d4-7da0-b95c-9a9e9ebc3b13",
"title": "Meeting with Acme Corp",
"kind": "online",
"status": "completed",
"createdAt": "2023-08-01T15:30:00Z",
"updatedAt": "2023-08-01T16:45:00Z",
"visibility": "workspace",
"tags": [
{
"id": "01887270-23f5-7da0-b95c-9a9e9ebc3c25",
"name": "Sales",
"color": "#FF5733"
}
],
"participants": [
{
"name": "John Doe",
"email": "john@example.com",
"profileImageUrl": "https://example.com/profiles/john.jpg",
"accountName": "Caret",
"accountDomain": "caret.so",
"accountImageUrl": "https://example.com/logos/caret.png"
},
{
"name": "Jane Smith",
"email": "jane@acme.com",
"profileImageUrl": "https://example.com/profiles/jane.jpg",
"accountName": "Acme Corp",
"accountDomain": "acme.com",
"accountImageUrl": "https://example.com/logos/acme.png"
}
],
"totalDurationSec": 3600,
"userWrittenNote": "Discussed integration timeline and requirements\n\n- Need to provide API documentation\n- Target release: Q4 2023",
"enhancedNote": "We discussed the integration timeline and requirements for the project. Key points:\n\n• Acme Corp needs to provide complete API documentation\n• Target release date is set for Q4 2023",
"summary": "Discussed new feature requests and timeline for implementation.",
"transcripts": [
{
"speaker": "John",
"text": "Hello Jane, thank you for joining today's call to discuss the integration timeline.",
"startTimestamp": "00:05",
"endTimestamp": "00:12"
},
{
"speaker": "Jane",
"text": "Hi John, happy to be here. I'm looking forward to discussing the roadmap.",
"startTimestamp": "00:13",
"endTimestamp": "00:20"
}
]
}
}