GET
/
v2
/
farcaster
/
user
/
best_friends
/
curl --request GET \
  --url https://api.neynar.com/v2/farcaster/user/best_friends/ \
  --header 'x-api-key: <api-key>'
{
  "users": [
    {
      "fid": 123,
      "mutual_affinity_score": 123,
      "username": "<string>"
    }
  ],
  "next": {
    "cursor": "<string>"
  }
}

Authorizations

x-api-key
string
header
default:NEYNAR_API_DOCS
required

API key to authorize requests

Query Parameters

fid
integer
required

The FID of the user

Required range: x >= 1
limit
integer
default:3

Number of results to fetch

Required range: 1 <= x <= 100
Example:

5

cursor
string

Pagination cursor

Response

200
application/json

Success

The response is of type object.