Keeps
A personal link library with automatic previews and a public feed.
Save links into your personal Keeps library. Keeps are private by default; you can mark individual Keeps public to build a feed under your username.
POST BASE/v1/api/keeps
Cookie: <session>
Content-Type: application/json
{
"url": "https://example.com/design-system",
"note": "Useful explanation of design tokens",
"tags": ["Design"],
"isPublic": false
}
Each Keep is enriched in the background: the page is fetched, a preview image is captured, and a title and description are generated. When that finishes, status becomes ready.
GET BASE/v1/api/keeps?limit=20
Cookie: <session>
PATCH BASE/v1/api/keeps/{id}
Cookie: <session>
Content-Type: application/json
{ "isPublic": true }
Public username feed (no auth) — only isPublic && ready:
GET BASE/v1/api/keeps/u/greatness
DELETE BASE/v1/api/keeps/{id}
Cookie: <session>