Get Mutual Followers
GET/users/:id/mutuals
Get intersection of users that follow followeeUserId and users that are followed by followerUserId
Request
Path Parameters
id stringrequired
A User ID
Query Parameters
offset integer
The number of items to skip. Useful for pagination (page number * limit)
limit integer
The number of items to fetch
user_id string
The user ID of the user making the request
Responses
- 200
- 400
- 500
Success
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
data
object[]
album_count integerrequired
artist_pick_track_id string
bio string
cover_photo
object
640x string
2000x string
followee_count integerrequired
follower_count integerrequired
handle stringrequired
id stringrequired
is_verified booleanrequired
twitter_handle string
instagram_handle string
tiktok_handle string
verified_with_twitter booleanrequired
verified_with_instagram booleanrequired
verified_with_tiktok booleanrequired
website string
donation string
location string
name stringrequired
playlist_count integerrequired
profile_picture
object
150x150 string
480x480 string
1000x1000 string
repost_count integerrequired
track_count integerrequired
is_deactivated booleanrequired
is_available booleanrequired
erc_wallet stringrequired
spl_wallet stringrequired
spl_usdc_wallet stringrequired
spl_usdc_payout_wallet string
supporter_count integerrequired
supporting_count integerrequired
total_audio_balance integerrequired
wallet stringrequired
The user's Ethereum wallet address for their account
{
"data": [
{
"album_count": 0,
"artist_pick_track_id": "string",
"bio": "string",
"cover_photo": {
"640x": "string",
"2000x": "string"
},
"followee_count": 0,
"follower_count": 0,
"handle": "string",
"id": "string",
"is_verified": true,
"twitter_handle": "string",
"instagram_handle": "string",
"tiktok_handle": "string",
"verified_with_twitter": true,
"verified_with_instagram": true,
"verified_with_tiktok": true,
"website": "string",
"donation": "string",
"location": "string",
"name": "string",
"playlist_count": 0,
"profile_picture": {
"150x150": "string",
"480x480": "string",
"1000x1000": "string"
},
"repost_count": 0,
"track_count": 0,
"is_deactivated": true,
"is_available": true,
"erc_wallet": "string",
"spl_wallet": "string",
"spl_usdc_wallet": "string",
"spl_usdc_payout_wallet": "string",
"supporter_count": 0,
"supporting_count": 0,
"total_audio_balance": 0,
"wallet": "string"
}
]
}
Bad request
Server error
Loading...