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

FieldDescription
tokenAddressCommunity the message came from
tokenSymbolToken ticker (e.g. FWOG)
tokenImageUrlToken logo
contentMessage text
usernameAuthor's display name
likeCountCurrent like count
replyCountNumber of replies
createdAtISO-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.