Skip to main content
POST
/
api
/
snapshot
/
spaces
/
followers
/snapshot/spaces/followers
curl --request POST \
  --url https://api.anysite.io/api/snapshot/spaces/followers \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "space": "<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
space
string
required

Space id

Minimum string length: 1
Examples:

"ens.eth"

"aave.eth"

count
integer
required

Max number of followers 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