Baremetrics Metrics API

The Metrics API from Baremetrics — 1 operation(s) for metrics.

Operations 1

GET /v1/metrics/{metric} Show Metric #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/baremetrics-metrics-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

baremetrics-metrics-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Baremetrics Annotations Metrics API
  description: REST API for accessing subscription analytics data including MRR, ARR, churn rate, LTV, customer metrics, charges, subscriptions, plans, annotations, and revenue forecasting. Requires bearer token authentication using an API key from Baremetrics account settings.
  version: '1.0'
  contact:
    url: https://developers.baremetrics.com
servers:
- url: https://api.baremetrics.com
security:
- bearerAuth: []
tags:
- name: Metrics
paths:
  /v1/metrics/{metric}:
    get:
      summary: Show Metric
      description: Returns a single metric summary (e.g. mrr, arr, ltv, customers, arpu, asp, customer_churn_rate, mrr_churn_rate, ltv, avg_sub_length).
      operationId: show-metric
      parameters:
      - name: metric
        in: path
        required: true
        schema:
          type: string
          enum:
          - mrr
          - arr
          - ltv
          - customers
          - arpu
          - asp
          - customer_churn_rate
          - mrr_churn_rate
          - avg_sub_length
          - new_customers
          - new_mrr
          - expansion_mrr
          - contraction_mrr
          - failed_charges
          - failed_charges_mrr
          - reactivations
          - reactivations_mrr
      - name: start_date
        in: query
        description: Start date in YYYY-MM-DD format.
        schema:
          type: string
          format: date
      - name: end_date
        in: query
        description: End date in YYYY-MM-DD format.
        schema:
          type: string
          format: date
      responses:
        '200':
          description: Metric data
          content:
            application/json:
              schema:
                type: object
                properties:
                  metric:
                    $ref: '#/components/schemas/Metric'
      tags:
      - Metrics
components:
  schemas:
    Metric:
      type: object
      properties:
        metric:
          type: string
          description: Metric name.
        summary:
          type: object
          description: Summary statistics for the metric.
          properties:
            current:
              type: integer
              description: Current value.
            previous:
              type: integer
              description: Previous period value.
            trend:
              type: number
              description: Percentage change.
        data:
          type: array
          description: Time-series data points.
          items:
            type: object
            properties:
              date:
                type: string
                format: date
              value:
                type: integer
  securitySchemes:
    bearerAuth:
      type: apiKey
      in: header
      name: Authorization
      x-bearer-format: bearer
      x-default: APIKEY
x-readme:
  headers: []
  explorer-enabled: true
  proxy-enabled: false