Home
Neynar
Fetch User Following Feed
Fetch User Following Feed
Fetch feed based on who a user is following
Feed
Fetch User Following Feed is an example object payload from Neynar, with 9 top-level fields. It illustrates the shape of data this provider's APIs accept or return.
Top-level fields
operationId method path summary description tags parameters requestBody responses
Example Payload
{
"operationId": "fetch-user-following-feed",
"method": "GET",
"path": "/v2/farcaster/feed/following/",
"summary": "Following",
"description": "Fetch feed based on who a user is following",
"tags": [
"Feed"
],
"parameters": [
{
"name": "",
"in": "",
"required": false,
"description": ""
},
{
"name": "fid",
"in": "query",
"required": true,
"description": "FID of user whose feed you want to create",
"schema": {
"minimum": 1,
"type": "integer"
}
},
{
"name": "viewer_fid",
"in": "query",
"required": false,
"description": "Providing this will return a feed that respects this user's mutes and blocks and includes `viewer_context`.",
"schema": {
"minimum": 1,
"type": "integer"
}
},
{
"name": "with_recasts",
"in": "query",
"required": false,
"description": "Include recasts in the response, true by default",
"schema": {
"default": true,
"example": true,
"type": "boolean"
}
},
{
"name": "limit",
"in": "query",
"required": false,
"description": "Number of results to fetch",
"schema": {
"default": 25,
"example": 30,
"format": "int32",
"maximum": 100,
"minimum": 1,
"type": "integer"
}
},
{
"name": "cursor",
"in": "query",
"required": false,
"description": "Pagination cursor.",
"schema": {
"type": "string"
}
}
],
"requestBody": null,
"responses": {
"200": {
"description": "Success",
"schema": {
"$ref": "#/components/schemas/FeedResponse"
},
"example": null
},
"400": {
"description": "Bad Request",
"schema": {
"$ref": "#/components/schemas/ErrorRes"
},
"example": null
}
}
}