Neynar · Schema

ReactionsResponse

Neynar Farcaster API schema for ReactionsResponse

FarcasterSocialDecentralizedWeb3BlockchainSocial GraphCastsChannelsFeedsReactionsNotificationsWebhooksOnchain

Properties

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

JSON Schema

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