Retrieve detailed information about a specific note by its ID.

Path Parameters

id
string
required

The unique identifier of the note

Response

note
object

Note details

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