Neynar · Example Payload

Hub Lookup Event

Lookup an event by its ID.

HubEvents

Hub Lookup Event 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-event",
  "method": "GET",
  "path": "/v1/eventById",
  "summary": "Event by ID",
  "description": "Lookup an event by its ID.",
  "tags": [
    "HubEvents"
  ],
  "parameters": [
    {
      "name": "event_id",
      "in": "query",
      "required": true,
      "description": "The Hub Id of the event",
      "schema": {
        "type": "integer"
      }
    }
  ],
  "requestBody": null,
  "responses": {
    "200": {
      "description": "A successful response.",
      "schema": {
        "$ref": "#/components/schemas/HubEvent"
      },
      "example": null
    }
  }
}