Neynar · Schema

ChannelMemberListResponse

Neynar Farcaster API schema for ChannelMemberListResponse

FarcasterSocialDecentralizedWeb3BlockchainSocial GraphCastsChannelsFeedsReactionsNotificationsWebhooksOnchain

Properties

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

JSON Schema

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