GET
/
farcaster
/
v2
/
feed
curl --request GET \
  --url https://build.wield.xyz/farcaster/v2/feed \
  --header 'API-KEY: <api-key>'
{
  "result": {
    "casts": [
      {
        "hash": "<string>",
        "threadHash": "<string>",
        "text": "<string>",
        "embeds": {
          "images": [
            "<string>"
          ],
          "urls": [
            "<string>"
          ]
        },
        "mentions": [
          "<string>"
        ],
        "mentionsPositions": [
          123
        ],
        "external": true,
        "author": {
          "fid": "<string>",
          "followingCount": 123,
          "followerCount": 123,
          "pfp": {
            "url": "<string>",
            "verified": true
          },
          "bio": {
            "text": "<string>",
            "mentions": [
              "<string>"
            ]
          },
          "external": true,
          "custodyAddress": "<string>",
          "displayName": "<string>",
          "username": "<string>",
          "registeredAt": "2023-11-07T05:31:56Z",
          "isFollowing": true,
          "isFollowedBy": true
        },
        "parentAuthor": {
          "fid": "<string>",
          "followingCount": 123,
          "followerCount": 123,
          "pfp": {
            "url": "<string>",
            "verified": true
          },
          "bio": {
            "text": "<string>",
            "mentions": [
              "<string>"
            ]
          },
          "external": true,
          "custodyAddress": "<string>",
          "displayName": "<string>",
          "username": "<string>",
          "registeredAt": "2023-11-07T05:31:56Z",
          "isFollowing": true,
          "isFollowedBy": true
        },
        "timestamp": "2023-11-07T05:31:56Z",
        "replies": {
          "count": 123
        },
        "reactions": {
          "count": 123
        },
        "recasts": {
          "count": 123,
          "recasters": [
            "<string>"
          ]
        },
        "isSelfLike": true,
        "isSelfRecast": true,
        "childCast": {},
        "childrenCasts": [
          {}
        ]
      }
    ]
  },
  "next": "<string>",
  "source": "v2"
}

Headers

API-KEY
string
default:DEMO_REPLACE_WITH_FREE_API_KEY
required

Free API key needed to authorize requests, grab one at docs.wield.xyz

Query Parameters

limit
integer
default:20

Number of items to return

cursor
string

Pagination cursor

Response

200 - application/json
Successful response
result
object
next
string
source
string
Example:

"v2"