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",
    "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]"
    }
  }
}

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",
    "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]"
    }
  }
}