Neynar · Schema

TrendingTopicsResponse

Neynar Farcaster API schema for TrendingTopicsResponse

FarcasterSocialDecentralizedWeb3BlockchainSocial GraphCastsChannelsFeedsReactionsNotificationsWebhooksOnchain

Properties

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

JSON Schema

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