Skip to main content
Version: v0.24.0

Get highlights of a bookmark

GET 

https://try.karakeep.app/api/v1/bookmarks/:bookmarkId/highlights

Get highlights of a bookmark

Request

Path Parameters

    bookmarkId BookmarkIdrequired

Responses

The list of highlights

Schema
    highlights object[]required
  • Array [
  • bookmarkIdstringrequired
    startOffsetnumberrequired
    endOffsetnumberrequired
    colorstring

    Possible values: [yellow, red, green, blue]

    Default value: yellow
    textstringnullablerequired
    notestringnullablerequired
    idstringrequired
    userIdstringrequired
    createdAtstringrequired
  • ]

Authorization: http

name: bearerAuthtype: httpscheme: bearerbearerFormat: JWT
var client = new HttpClient();
var request = new HttpRequestMessage(HttpMethod.Get, "https://try.karakeep.app/api/v1/bookmarks/:bookmarkId/highlights");
request.Headers.Add("Accept", "application/json");
request.Headers.Add("Authorization", "Bearer <token>");
var response = await client.SendAsync(request);
response.EnsureSuccessStatusCode();
Console.WriteLine(await response.Content.ReadAsStringAsync());
Request Collapse all
Base URL
https://try.karakeep.app/api/v1
Auth
Parameters
— pathrequired
ResponseClear

Click the Send API Request button above and see the response here!