Error
A valid request URL is required to generate request examples{
"entries": [
{
"rank": 1,
"user": {
"username": "<string>",
"avatar": "<string>"
},
"wallet": {
"chain": {
"id": 123,
"name": "<string>",
"type": "bitcoin"
},
"address": "<string>"
},
"stats": {
"usdDonatedE6": "<string>",
"donationCount": "<string>",
"firstDonationDate": "<string>",
"lastDonationDate": "<string>"
}
}
],
"nextCursor": "<string>"
}{
"error": "<string>",
"code": "VALIDATION_ERROR",
"issues": [
null
]
}{
"error": "<string>",
"code": "FORBIDDEN"
}{
"error": "<string>",
"code": "NOT_FOUND"
}{
"error": "<string>",
"code": "<string>"
}API Reference
Get config leaderboard by ID
Get a paginated top-donors leaderboard for a config. Only configs owned by the caller’s project are accessible.
GET
/
configs
/
{configId}
/
leaderboard
Error
A valid request URL is required to generate request examples{
"entries": [
{
"rank": 1,
"user": {
"username": "<string>",
"avatar": "<string>"
},
"wallet": {
"chain": {
"id": 123,
"name": "<string>",
"type": "bitcoin"
},
"address": "<string>"
},
"stats": {
"usdDonatedE6": "<string>",
"donationCount": "<string>",
"firstDonationDate": "<string>",
"lastDonationDate": "<string>"
}
}
],
"nextCursor": "<string>"
}{
"error": "<string>",
"code": "VALIDATION_ERROR",
"issues": [
null
]
}{
"error": "<string>",
"code": "FORBIDDEN"
}{
"error": "<string>",
"code": "NOT_FOUND"
}{
"error": "<string>",
"code": "<string>"
}Authorizations
Developer API key. Required for config create/list/delete and project analytics. Optional on public GET reads (anonymous callers are IP rate-limited). Obtain from the Developer dashboard.
Headers
Developer API key
Minimum string length:
1Path Parameters
Config ID
Query Parameters
Page size (default 50, max 200)
Required range:
1 <= x <= 200Cursor for next page (from previous nextCursor)
Was this page helpful?