Neynar · Example Payload

Hub Fetch User Followers

Fetch a list of users that are following a user.

Links

Hub Fetch User Followers 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-user-followers",
  "method": "GET",
  "path": "/v1/linksByTargetFid",
  "summary": "To target FID",
  "description": "Fetch a list of users that are following a user.",
  "tags": [
    "Links"
  ],
  "parameters": [
    {
      "name": "target_fid",
      "in": "query",
      "required": true,
      "description": "The FID of the target user for this link",
      "schema": {
        "$ref": "#/components/schemas/FidSchema"
      }
    },
    {
      "name": "link_type",
      "in": "query",
      "required": false,
      "description": "",
      "schema": {
        "$ref": "#/components/schemas/LinkType"
      }
    },
    {
      "name": "",
      "in": "",
      "required": false,
      "description": ""
    },
    {
      "name": "",
      "in": "",
      "required": false,
      "description": ""
    },
    {
      "name": "",
      "in": "",
      "required": false,
      "description": ""
    }
  ],
  "requestBody": null,
  "responses": {
    "200": {
      "description": "The requested Links.",
      "schema": {
        "allOf": [
          {
            "type": "object",
            "required": [
              "messages"
            ],
            "properties": {
              "messages": {
                "type": "array",
                "items": {
                  "$ref": "#/components/schemas/LinkAdd"
                }
              }
            }
          },
          {
            "$ref": "#/components/schemas/PaginationResponse"
          }
        ]
      },
      "example": null
    }
  }
}