v1

latestOpenAPI 3.1.0MITraw.githubusercontent.com2025-07-16390274.5 KB
Analytics

Get organization metrics

Returns detailed metrics for a specific organization

get/api/v1/analytics/organizations/{id}

Path parameters

idstring required

Organization public ID

Query parameters

period'7d' | '30d' | '90d' | '1y'

Response

typestring required

Example response

{
  "type": "object",
  "properties": {
    "organization": {
      "type": "object",
      "properties": {
        "id": {
          "type": "string"
        },
        "name": {
          "type": "string"
        }
      }
    },
    "metrics": {
      "type": "object",
      "properties": {
        "totalBids": {
          "type": "number"
        },
        "successfulBids": {
          "type": "number"
        },
        "totalVolume": {
          "type": "string"
        },
        "avgResponseTime": {
          "type": "number"
        },
        "apiCalls": {
          "type": "number"
        },
        "errorRate": {
          "type": "number"
        },
        "activeDays": {
          "type": "number"
        },
        "memberCount": {
          "type": "number"
        }
      }
    },
    "trends": {
      "type": "object",
      "properties": {
        "dailyMetrics": {
          "type": "array",
          "items": {
            "type": "object",
            "properties": {
              "date": {
                "type": "string"
              },
              "bidCount": {
                "type": "number"
              },
              "volume": {
                "type": "string"
              },
              "apiCalls": {
                "type": "number"
              }
            }
          }
        }
      }
    }
  }
}