Bilanc Metrics API

The Bilanc Metrics API allows you to retrieve various engineering and development metrics from your organization’s data. The API is built using FastAPI and provides endpoints for accessing different types of metrics.

API Endpoint Structure

All metric endpoints follow the pattern: POST /metrics/v2/{metric_type}

Core Concepts

Authentication

All API endpoints require authentication using PropelAuth. Include your authentication token in the request headers.

Authorization: Bearer YOUR_AUTH_TOKEN

See our Authentication guide for more details.

Common Request Parameters

Most API endpoints accept the following common parameters:

ParameterTypeDescription
filtersobjectKey-value pairs for filtering the metric data
group_byarrayFields to group the results by
date_levelstringTime granularity (day, week, month, quarter, year)
aggregationstringMethod to aggregate the metric data
date_fieldstringDate field to use for time-based calculations
time_series_databooleanWhether to return data formatted for time series visualization
include_previous_periodbooleanWhether to include data from the previous time period

Response Format

API responses are returned in JSON format. The exact structure depends on the requested metric and parameters but generally follows a consistent pattern:

{
  "results": [
    {
      "metric_name": "pull-requests-count",
      "value": 42,
      "group_by": {
        "repository_name": "my-repo"
      }
    }
  ],
  "meta": {
    "filters": {
      "repository_id": "123456"
    },
    "date_range": {
      "start_date": "2023-01-01",
      "end_date": "2023-12-31"
    }
  }
}

Available Metric Categories