---
title: "Get Billing Summary"
method: GET
path: "/api/external/v2/billing/summary"
tags: ["external-v2-billing"]
---

# Get Billing Summary

`GET /api/external/v2/billing/summary`

Return the current account's billing summary.

Combines subscription metadata (type, status, billing cycle, end date) and
the credit balance snapshot in a single payload.  Intended as the first
call an API consumer makes to understand their billing state.

## Response `200`

Successful Response

- BillingSummaryResponse — OpenAPI schema for GET /api/external/v2/billing/summary.
  - `request_id` string, required
  - `timestamp` string, required
  - `data` BillingSummaryData, required
    - `subscription` SubscriptionSummaryResponse, required — Subscription line-item on the billing summary. Mirrors the ``subscription`` block returned by ``GET /me`` so that callers already coupled to the /me shape don't need to re-learn the fields.
      - `type` string, nullable, required
      - `status` string, nullable, required
      - `billing_cycle` string, nullable, required
      - `end_date` string, nullable, required
    - `credits` CreditBalanceResponse, required — Current credit balance snapshot. ``enabled`` is ``true`` when the account is provisioned in Metronome — i.e. ``accounts.external_customer_id`` is set, mirroring the borrower portal's enablement gate. ``false`` when the account has not been provisioned. When ``enabled`` is ``false``, ``balance`` is ``null`` — distinguishing "not on credits" from "on credits with a zero balance" (balance ``0``).
      - `enabled` boolean, required
      - `balance` integer, nullable, required
      - `unit` string, required

---

[API](https://skmtc.net/lev/apis/lev-api.md) · [All operations](https://skmtc.net/lev/apis/lev-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/lev/lev-api/revisions/e1915e1423cf/schema)
