v1

latestOpenAPI 3.1.0MITraw.githubusercontent.com2025-07-16390274.5 KB
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

typestring required

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"
    }
  }
}