Skip to main content
POST
/
api
/
blur
/
collections
/
holders
/blur/collections/holders
curl --request POST \
  --url https://api.anysite.io/api/blur/collections/holders \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "collection": "<string>",
  "count": 2,
  "timeout": 300
}
'
[
  {
    "owner_address": "<string>",
    "@type": "BlurHolder",
    "owned_count": 123
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
collection
string
required

Collection slug (e.g. 'azuki') or its on-chain contract address

Minimum string length: 1
Examples:

"azuki"

"0xed5af388653567af2f388e6224dc7c4b3241c544"

count
integer
required

Number of top holders to return

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

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

owner_address
string
required
@type
string
default:BlurHolder
owned_count
integer | null