Neynar · Schema

BestFriendsResponse

Neynar Farcaster API schema for BestFriendsResponse

FarcasterSocialDecentralizedWeb3BlockchainSocial GraphCastsChannelsFeedsReactionsNotificationsWebhooksOnchain

Properties

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

JSON Schema

bestfriendsresponse.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://neynar.com/schemas/BestFriendsResponse",
  "title": "BestFriendsResponse",
  "description": "Neynar Farcaster API schema for BestFriendsResponse",
  "properties": {
    "next": {
      "$ref": "#/components/schemas/NextCursor"
    },
    "users": {
      "items": {
        "properties": {
          "fid": {
            "type": "integer"
          },
          "mutual_affinity_score": {
            "type": "number"
          },
          "username": {
            "type": "string"
          }
        },
        "required": [
          "fid",
          "mutual_affinity_score",
          "username"
        ],
        "type": "object"
      },
      "type": "array"
    }
  },
  "required": [
    "users"
  ],
  "type": "object"
}