Neynar · Example Payload

Fetch Webhooks

Fetch a list of webhooks associated to a user

Webhook

Fetch Webhooks 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": "fetch-webhooks",
  "method": "GET",
  "path": "/v2/farcaster/webhook/list/",
  "summary": "Associated webhooks of user",
  "description": "Fetch a list of webhooks associated to a user",
  "tags": [
    "Webhook"
  ],
  "parameters": [],
  "requestBody": null,
  "responses": {
    "200": {
      "description": "Success",
      "schema": {
        "$ref": "#/components/schemas/WebhookListResponse"
      },
      "example": null
    }
  }
}