Neynar · Schema

BulkFollowResponse

Neynar Farcaster API schema for BulkFollowResponse

FarcasterSocialDecentralizedWeb3BlockchainSocial GraphCastsChannelsFeedsReactionsNotificationsWebhooksOnchain

Properties

Name Type Description
details array
success boolean
View JSON Schema on GitHub

JSON Schema

bulkfollowresponse.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://neynar.com/schemas/BulkFollowResponse",
  "title": "BulkFollowResponse",
  "description": "Neynar Farcaster API schema for BulkFollowResponse",
  "properties": {
    "details": {
      "items": {
        "$ref": "#/components/schemas/FollowResponse"
      },
      "type": "array"
    },
    "success": {
      "type": "boolean"
    }
  },
  "required": [
    "success",
    "details"
  ],
  "type": "object"
}