Neynar · Example Payload

Hub Fetch User Following

Fetch a list of users that a user is following.

Links

Hub Fetch User Following 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-following",
  "method": "GET",
  "path": "/v1/linksByFid",
  "summary": "From source FID",
  "description": "Fetch a list of users that a user is following.",
  "tags": [
    "Links"
  ],
  "parameters": [
    {
      "name": "fid",
      "in": "query",
      "required": true,
      "description": "The FID of the link's originator",
      "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
    }
  }
}