---
title: "List Billing Emails"
method: GET
path: "/v1/billing/emails"
tags: ["Billing"]
---

# List Billing Emails

`GET /v1/billing/emails`

List all billing related emails associated with the account

## Query parameters

- `page` integer — Page of results to include (default = 1)
- `per_page` integer — How many results to include in each page (default = 10)

## Response `200`

OK

- BillingEmailsResponse
  - `success` boolean — whether the request succeeded
  - `errors` string[]
  - `messages` string[], nullable
  - `metadata` object
    - `page` integer — Page number of the results
    - `page_size` integer — Number of results per page
    - `total` integer — Total number of results
    - `sort` string — Sorting criteria
    - `direction` 'asc' | 'desc' — Sorting direction
  - `result` BillingEmail[]
    - `id` integer — ID of the email
    - `subject` string — Subject of the email
    - `message` string — Message of the email in HTML format (escaped)
    - `date` string — Date the email was sent
    - `to` string — To address of the email
    - `cc` string — CC address of the email
    - `bcc` string — BCC address of the email

## Other responses

- `400` — Invalid or missing request parameters
- `401` — Authentication failed
- `500` — Internal error

---

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