Skip to main content

List Highlights

GET /v1/notes/:id/highlights
List all highlights within a note. Each highlight has a timestamp and the corresponding transcript text around that moment.
Response
{
  "data": [
    {
      "id": "hl_01",
      "timestamp_ms": 42000,
      "text": "Key decision: ship V2 by July 1",
      "note_id": "note_abc123"
    },
    {
      "id": "hl_02",
      "timestamp_ms": 98000,
      "text": "Sarah will handle the partner integration",
      "note_id": "note_abc123"
    }
  ]
}

How Highlights Work

During a recording, single-tap the Ruune device to create a highlight at that moment. The device vibrates to confirm. After processing, each highlight is matched to the nearest transcript segment, giving you both a timestamp and the text spoken at that moment. Highlights appear in the note detail response (GET /v1/notes/:id) and can also be fetched independently with this endpoint.