The feed
The feed aggregates activity across all communities.
Authenticated feed
Requires an API key:
const { data } = await api.getFeed();
console.log(data?.items); // FeedItem[]FeedItem fields
| Field | Description |
|---|---|
tokenAddress | Community the message came from |
tokenSymbol | Token ticker (e.g. FWOG) |
tokenImageUrl | Token logo |
content | Message text |
username | Author's display name |
likeCount | Current like count |
replyCount | Number of replies |
createdAt | ISO-8601 timestamp |
Public feed
No signed-in user required (your x-api-key is still sent via configureApi):
const { data } = await api.getFeedPublic();Same FeedItem shape — handy for embedding or pre-rendering pages where the visitor
isn't signed in.