Neynar · Schema

Hub PaginationResponse

Neynar Hub API schema for PaginationResponse

FarcasterSocialDecentralizedWeb3BlockchainSocial GraphCastsChannelsFeedsReactionsNotificationsWebhooksOnchain

Properties

Name Type Description
nextPageToken string Base64-encoded pagination token for fetching the next page of results. An empty value indicates there are no more pages to return. Used in conjunction with the pageSize parameter to implement paginati
View JSON Schema on GitHub

JSON Schema

hub-paginationresponse.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://neynar.com/schemas/hub/PaginationResponse",
  "title": "Hub PaginationResponse",
  "description": "Neynar Hub API schema for PaginationResponse",
  "type": "object",
  "required": [
    "nextPageToken"
  ],
  "properties": {
    "nextPageToken": {
      "type": "string",
      "format": "byte",
      "pattern": "^(?:[A-Za-z0-9+/]{4})*(?:[A-Za-z0-9+/]{2}==|[A-Za-z0-9+/]{3}=)?$",
      "description": "Base64-encoded pagination token for fetching the next page of results. An empty value indicates there are no more pages to return. Used in conjunction with the pageSize parameter to implement pagination across large result sets.",
      "example": "AuzO1V0DtaItCwwa10X6YsfStlynsGWT"
    }
  }
}