Neynar · Schema

NotificationsResponse

Neynar Farcaster API schema for NotificationsResponse

FarcasterSocialDecentralizedWeb3BlockchainSocial GraphCastsChannelsFeedsReactionsNotificationsWebhooksOnchain

Properties

Name Type Description
next object
notifications array
unseen_notifications_count integer
View JSON Schema on GitHub

JSON Schema

notificationsresponse.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://neynar.com/schemas/NotificationsResponse",
  "title": "NotificationsResponse",
  "description": "Neynar Farcaster API schema for NotificationsResponse",
  "properties": {
    "next": {
      "$ref": "#/components/schemas/NextCursor"
    },
    "notifications": {
      "items": {
        "$ref": "#/components/schemas/Notification"
      },
      "type": "array"
    },
    "unseen_notifications_count": {
      "format": "int32",
      "type": "integer"
    }
  },
  "required": [
    "unseen_notifications_count",
    "notifications",
    "next"
  ],
  "type": "object"
}