Neynar · Schema

FollowersResponse

Neynar Farcaster API schema for FollowersResponse

FarcasterSocialDecentralizedWeb3BlockchainSocial GraphCastsChannelsFeedsReactionsNotificationsWebhooksOnchain

Properties

Name Type Description
next object
users array
View JSON Schema on GitHub

JSON Schema

followersresponse.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://neynar.com/schemas/FollowersResponse",
  "title": "FollowersResponse",
  "description": "Neynar Farcaster API schema for FollowersResponse",
  "properties": {
    "next": {
      "$ref": "#/components/schemas/NextCursor"
    },
    "users": {
      "items": {
        "$ref": "#/components/schemas/Follower"
      },
      "type": "array"
    }
  },
  "required": [
    "users",
    "next"
  ],
  "type": "object"
}