Neynar · Example Payload

Hub Lookup On Chain Id Registry Event By Address

Fetch an on-chain ID Registry Event for a given Address.

OnChainEvents

Hub Lookup On Chain Id Registry Event By Address 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-on-chain-id-registry-event-by-address",
  "method": "GET",
  "path": "/v1/onChainIdRegistryEventByAddress",
  "summary": "Fetch an on-chain ID Registry Event for a given Address",
  "description": "Fetch an on-chain ID Registry Event for a given Address.",
  "tags": [
    "OnChainEvents"
  ],
  "parameters": [
    {
      "name": "address",
      "in": "query",
      "required": true,
      "description": "The ETH address being requested",
      "schema": {
        "type": "string",
        "pattern": "^0x[0-9a-fA-F]{40}$"
      }
    }
  ],
  "requestBody": null,
  "responses": {
    "200": {
      "description": "A successful response.",
      "schema": {
        "$ref": "#/components/schemas/OnChainEventIdRegister"
      },
      "example": null
    }
  }
}