Neynar · Schema

FeedResponse

Neynar Farcaster API schema for FeedResponse

FarcasterSocialDecentralizedWeb3BlockchainSocial GraphCastsChannelsFeedsReactionsNotificationsWebhooksOnchain

Properties

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

JSON Schema

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