Analytics
Get organization leaderboard
Returns top performing organizations with public metrics
get/api/v1/analytics/leaderboard
Query parameters
period'daily' | 'weekly' | 'monthly' | 'all-time'
metric'volume' | 'bids' | 'success-rate' | 'activity'
limitnumber
Response
Example response
{
"type": "object",
"properties": {
"leaderboard": {
"type": "array",
"items": {
"type": "object",
"properties": {
"organization": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"name": {
"type": "string"
}
}
},
"metrics": {
"type": "object",
"properties": {
"bidCount": {
"type": "number"
},
"volume": {
"type": "string"
},
"successRate": {
"type": "number"
},
"avgBidTime": {
"type": "number"
}
}
},
"rank": {
"type": "number"
},
"score": {
"type": "number"
}
}
}
},
"period": {
"type": "string"
},
"metric": {
"type": "string"
},
"totalEntries": {
"type": "number"
}
}
}