get_feed_v1_me_feed_get
Retrieve dataset updates from providers you follow, sorted by time, with cursor-based pagination.
Instructions
GET /v1/me/feed (public) — Get user activity feed — Get a feed of updates relevant to the user.
Returns dataset activity from providers the user follows, interleaved by time. Currently supports followed provider updates; user follow system is not yet available.
Feed Types:
followed: Dataset updates from providers you followpeople: Updates from users you follow (not yet available, returns empty)merged: Currently coerced tofollowed(the people feed is empty so the merge step would produce broken cursors).
Pagination:
Use the next_cursor from the response as the cursor parameter for the next page.
Authentication: Requires Clerk authentication (browser session or JWT).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| type | No | Feed type: followed (providers you follow), people (users you follow), or merged | |
| limit | No | Maximum results | |
| cursor | No | ISO8601 timestamp for pagination (returns items before this time) |