---
title: "Get Billing Usage Requests"
method: GET
path: "/billing/usage/requests"
tags: ["billing"]
---

# Get Billing Usage Requests

`GET /billing/usage/requests`

Paginated request rows for the settings usage table.

## Query parameters

- `page` integer — 1-based page
- `page_size` integer — Page size (max 100)
- `start_date` string, nullable — Filter: created_at >= (ISO); ignored when full_history=true
- `end_date` string, nullable — Filter: created_at <= (ISO); with full_history, caps the window
- `full_history` boolean — If true, from first request through end (or now); ignores start_date

## Response `200`

Successful Response

- UsageRequestsPageResponse — Paginated request log for the usage table UI.
  - `items` UsageRequestItem[], required
    - `id` string, required
    - `created_at` string, required
    - `credit_usage` number, nullable
    - `token_usage` integer
    - `input_tokens` integer
    - `output_tokens` integer
    - `cache_read_tokens` integer
    - `cache_write_tokens` integer
    - `cost` number
    - `endpoint` string
    - `model` string
  - `total_count` integer, required
  - `page` integer, required
  - `page_size` integer, required

## Other responses

- `422` — Validation Error

---

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