Skip to main content
POST
/
api
/
snapshot
/
users
/
follows
/snapshot/users/follows
curl --request POST \
  --url https://api.anysite.io/api/snapshot/users/follows \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "follower": "<string>",
  "count": 2,
  "timeout": 300
}
'
[
  {
    "id": "<string>",
    "@type": "SnapshotFollow",
    "follower": "<string>",
    "space": {
      "id": "<string>",
      "@type": "SnapshotSpaceRef",
      "name": "<string>",
      "image": "<string>",
      "network": "<string>"
    },
    "created_at": 123
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
follower
string
required

Voter wallet address

Minimum string length: 1
Example:

"0x0579A616689f7ed748dC07692A3F150D44b0CA09"

count
integer
required

Max number of followed spaces to return

Required range: x >= 1
timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

id
string
required
@type
string
default:SnapshotFollow
follower
string | null
space
object
created_at
integer | null