Neynar · Example Payload

Hub Fetch Username Proofs By Fid

Fetch proofs provided by a user.

Usernames

Hub Fetch Username Proofs By Fid 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-fetch-username-proofs-by-fid",
  "method": "GET",
  "path": "/v1/userNameProofsByFid",
  "summary": "Proofs provided by an FID",
  "description": "Fetch proofs provided by a user.",
  "tags": [
    "Usernames"
  ],
  "parameters": [
    {
      "name": "fid",
      "in": "query",
      "required": true,
      "description": "The FID being requested",
      "schema": {
        "type": "integer"
      }
    }
  ],
  "requestBody": null,
  "responses": {
    "200": {
      "description": "A successful response.",
      "schema": {
        "$ref": "#/components/schemas/UsernameProofsResponse"
      },
      "example": null
    }
  }
}