Content
@
https://opensea.io/collection/neynar-1
0 reply
0 recast
0 reaction
Andrew Jiang 🎩
@ok
Is it possible to get "fetchFeedByChannelIds" to return with all replies and recasts? Or does it only give you the data as to whether replies and recasts exist? I see the params for withReplies and withRecasts, but not getting actual replies and recasts in the response.
1 reply
2 recasts
9 reactions
rish
@rish
Can you paste the API request you’re making?
2 replies
0 recast
0 reaction
Andrew Jiang 🎩
@ok
Ah I see, with_replies means the feed includes casts that are replies, not that the'll be nested in the data. Makes sense!
1 reply
0 recast
0 reaction
Andrew Jiang 🎩
@ok
const url = 'https://api.neynar.com/v2/farcaster/feed/channels?channel_ids=neynar&with_recasts=true&with_replies=true&members_only=true&limit=25'; const options = { method: 'GET', headers: {accept: 'application/json', 'x-api-key': 'NEYNAR_API_DOCS'} }; fetch(url, options) .then(res => res.json()) .then(json => console.log(json)) .catch(err => console.error(err)); which gets me this thread, just without the replies or recasts.
1 reply
0 recast
0 reaction