import { NeynarAPIClient, Configuration } from "@neynar/nodejs-sdk";
const client = new NeynarAPIClient(
new Configuration({ apiKey: "YOUR_NEYNAR_API_KEY" })
);
const res = await client.fetchFeed({
// xNeynarExperimental: true,
// feedType: "value",
// filterType: "value",
// fid: 123,
// fids: "example",
// parentUrl: "example",
// channelId: "example",
// membersOnly: true,
// embedUrl: "example",
// embedTypes: [],
// withRecasts: true,
// limit: 123,
// cursor: "example",
// viewerFid: 123,
});
console.log(res);