Neynar · Schema

CastsSearchResponse

Neynar Farcaster API schema for CastsSearchResponse

FarcasterSocialDecentralizedWeb3BlockchainSocial GraphCastsChannelsFeedsReactionsNotificationsWebhooksOnchain

Properties

Name Type Description
result object
View JSON Schema on GitHub

JSON Schema

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