Neynar · Example Payload

Hub Lookup Hub Info

Retrieve hub information.

Info

Hub Lookup Hub Info is an example object payload from Neynar, with 9 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

operationIdmethodpathsummarydescriptiontagsparametersrequestBodyresponses

Example Payload

Raw ↑
{
  "operationId": "hub-lookup-hub-info",
  "method": "GET",
  "path": "/v1/info",
  "summary": "Sync Methods",
  "description": "Retrieve hub information.",
  "tags": [
    "Info"
  ],
  "parameters": [
    {
      "name": "dbstats",
      "in": "query",
      "required": true,
      "description": "Controls whether the response includes database statistics. When true, the response includes information about the hub's database state, storage usage, and performance metrics.",
      "schema": {
        "type": "boolean",
        "example": true
      }
    }
  ],
  "requestBody": null,
  "responses": {
    "200": {
      "description": "A successful response.",
      "schema": {
        "$ref": "#/components/schemas/HubInfoResponse"
      },
      "example": null
    }
  }
}