curl --request GET \
--url https://api.caret.so/v1/notes/note_123456789 \
--header 'X-API-Key: <your_api_key>'
{
"note": {
"id": "note_123456789",
"workspace_id": "ws_123456789",
"title": "Weekly Team Sync",
"status": "completed",
"created_at": "2024-01-28T10:00:00Z",
"updated_at": "2024-01-28T11:30:00Z",
"transcripts": [],
"speakerAnalysis": [],
"summary": {
"content": "Meeting summary content...",
"language": "en"
},
"creator": {
"id": "user_123",
"name": "John Doe",
"email": "[email protected]"
}
}
}
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",
"workspace_id": "ws_123456789",
"title": "Weekly Team Sync",
"status": "completed",
"created_at": "2024-01-28T10:00:00Z",
"updated_at": "2024-01-28T11:30:00Z",
"transcripts": [],
"speakerAnalysis": [],
"summary": {
"content": "Meeting summary content...",
"language": "en"
},
"creator": {
"id": "user_123",
"name": "John Doe",
"email": "[email protected]"
}
}
}
Show Note
curl --request GET \
--url https://api.caret.so/v1/notes/note_123456789 \
--header 'X-API-Key: <your_api_key>'
{
"note": {
"id": "note_123456789",
"workspace_id": "ws_123456789",
"title": "Weekly Team Sync",
"status": "completed",
"created_at": "2024-01-28T10:00:00Z",
"updated_at": "2024-01-28T11:30:00Z",
"transcripts": [],
"speakerAnalysis": [],
"summary": {
"content": "Meeting summary content...",
"language": "en"
},
"creator": {
"id": "user_123",
"name": "John Doe",
"email": "[email protected]"
}
}
}