> For the complete documentation index, see [llms.txt](https://docs.plainproxies.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.plainproxies.com/subuser-api-documentation/billing-and-invoicing.md).

# Billing & Invoicing

### Billing & Invoicing

Browse plans, manage subscriptions, and access invoices for your reseller account.

#### Plans

List currently available plans and pricing across all product types. Use this to discover purchase options before placing an order.

#### Subscriptions

* **List** all active and historical subscriptions
* **View details** including next billing date, renewal price, and Paddle status
* **Cancel** a subscription (active until the period ends)
* **Resume** a canceled subscription before it expires

#### Invoices

* **List** all invoices with filtering by status (paid, pending, canceled)
* **View** invoice line items, taxes, and totals
* **Download PDF** for accounting and bookkeeping

#### Common patterns

```bash
# List unpaid invoices
curl "https://dashboard.plainproxies.com/api/.../invoices?filter[status]=pending" \
  -H "X-API-KEY: YOUR_API_KEY"

# Download an invoice PDF
curl "https://dashboard.plainproxies.com/api/.../invoices/{uuid}/pdf" \
  -H "X-API-KEY: YOUR_API_KEY" -o invoice.pdf
```

#### Reseller Balance

Funds added via deposit are reflected on your reseller record. Top-ups, balance deductions, and refunds appear in your activity log.


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.plainproxies.com/subuser-api-documentation/billing-and-invoicing.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
