Skip to main content
POST
/
v1
/
addresses
/
follow
/
bulk
Bulk follow addresses
curl --request POST \
  --url https://api.clicker.xyz/v1/addresses/follow/bulk \
  --header 'Content-Type: application/json' \
  --data '
[
  {
    "targets": [
      "<string>"
    ],
    "targetType": "addressOrUid",
    "addressOrUid": "<string>",
    "action": "follow"
  }
]
'
{
  "targetProfiles": [
    {
      "id": "<string>",
      "name": "<string>",
      "images": {
        "raw": "<string>",
        "xs": "<string>",
        "sm": "<string>"
      },
      "addresses": [
        "<string>"
      ],
      "metadata": {
        "farcasterUsername": "<string>",
        "farcasterId": 123,
        "farcasterDisplayName": "<string>",
        "lensHandle": "<string>",
        "ensName": "<string>",
        "twitterHandle": "<string>",
        "debankName": "<string>",
        "pumpName": "<string>",
        "commentCount30d": 123,
        "pnl30d": 123,
        "winRate30d": 123,
        "tradeCount30d": 123,
        "roiPercent30d": 123,
        "perAddressPnl30d": {},
        "perAddressRoiPercent30d": {}
      }
    }
  ]
}
Note: For performance reasons, profiles returned by follow endpoints don’t include social metrics (e.g., follower/follow counts, comment counts, copytrade stats). If you need those metrics, use the Get Profile endpoint.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json · object[]
targets
string[]
required
addressOrUid
string
required
action
enum<string>
required
Available options:
follow,
unfollow
targetType
enum<string>
default:addressOrUid
Available options:
addressOrUid,
twitterHandle

Response

200

targetProfiles
object[]
required