Programmatic access to your saved intelligence.
All endpoints require an API key in the Authorization header.
Authorization: Bearer lk_live_xxxxxxxx...
Create a key in Settings → API keys. The full key is shown only once.
posts:read — list and read saved posts + AI summariesopportunities:read — read business opportunitiesreports:read — read weekly intelligence reportsimports:write — queue a Reddit URL for import60 requests per minute per key. Exceeding returns 429.
/api/public/v1/postsposts:readPaginated list. Query: limit (max 100), offset.
/api/public/v1/posts/{id}posts:readSingle post with AI summary.
/api/public/v1/opportunitiesopportunities:readBusiness opportunities. Query: limit, offset.
/api/public/v1/reportsreports:readWeekly reports (latest first).
/api/public/v1/reports/{id}reports:readSingle report including body JSON.
/api/public/v1/importsimports:writeBody: { "url": "https://reddit.com/r/.../comments/..." }
curl https://lurkr.dev/api/public/v1/posts?limit=10 \ -H "Authorization: Bearer lk_live_xxxxxxxx..."