Feeds
Friends feed, current-user feed, and group feeds.
Each feed endpoint joins to app_users for the actor's display info. Group feed enforces membership — non-members get 403 NOT_A_MEMBER.
Source: apps/api/src/routes/client/feeds.ts.
Endpoints
| Method | Path | Description |
|---|---|---|
| GET | /client/feeds | User's feed (self + accepted friends). |
| GET | /client/feeds/me | Only the user's own activity. |
| GET | /client/feeds/group/:groupId | Activity from all members of a group. |
GET /client/feeds
Query
| Param | Default |
|---|---|
limit | 20 |
offset | 0 |
Response 200
Try it:
GET
client auth/client/feedscurl -X GET 'https://api.amba.dev/client/feeds'Loading auth… Configure auth in the settings drawer (top-right) to run this request.
Curl:
GET /client/feeds/me
Same shape, filtered to actor_id = current user.
Try it:
GET
client auth/client/feeds/mecurl -X GET 'https://api.amba.dev/client/feeds/me'Loading auth… Configure auth in the settings drawer (top-right) to run this request.
Curl:
GET /client/feeds/group/:groupId
Errors
403 NOT_A_MEMBER— user is not in the group.500 FETCH_FAILED.
Try it:
GET
client auth/client/feeds/group/%7B%7BgroupId%7D%7Dcurl -X GET 'https://api.amba.dev/client/feeds/group/%7B%7BgroupId%7D%7D'Loading auth… Configure auth in the settings drawer (top-right) to run this request.
Curl: