import { NeynarAPIClient, Configuration } from "@neynar/nodejs-sdk";
const client = new NeynarAPIClient(
new Configuration({ apiKey: "YOUR_NEYNAR_API_KEY" })
);
const res = await client.fetchFeedByChannelIds({
channelIds: "example", // Comma separated list of up to 10 channel IDs e.g. neynar,farcaster
// xNeynarExperimental: true,
// withRecasts: true,
// viewerFid: 123,
// withReplies: true,
// membersOnly: true,
// fids: "example",
// limit: 123,
// cursor: "example",
// shouldModerate: true,
});
console.log(res);