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

# Billing

The account's invoices, payments, and the service plans its devices are on.

Billing covers what the account owes and how it pays: invoices raised against it, the providers it can pay through, recurring payments, and the history of both. It also covers the service plans that decide what each device is allowed to do.

An integration usually needs [Transaction](/docs/navixy-api/user-api/resources/billing/transaction.md) to read history and [Tariff (plan)](/docs/navixy-api/user-api/resources/billing/tariff.md) to find out what a device's plan permits. Raising and settling invoices is the rest.

## Operations in this section

#### Bill

| Endpoint                                                                               | Method | What it does |
| -------------------------------------------------------------------------------------- | ------ | ------------ |
| [`/bill/create`](/docs/navixy-api/user-api/resources/billing/bill.md#post-bill-create) | POST   | Create bill  |
| [`/bill/list`](/docs/navixy-api/user-api/resources/billing/bill.md#post-bill-list)     | POST   | List bills   |

#### Payment system

| Endpoint                                                                                                                         | Method | What it does         |
| -------------------------------------------------------------------------------------------------------------------------------- | ------ | -------------------- |
| [`/payment_system/list`](/docs/navixy-api/user-api/resources/billing/payment_system.md#post-payment_system-list)                 | POST   | List payment systems |
| [`/payment_system/estimate/get`](/docs/navixy-api/user-api/resources/billing/payment_system.md#post-payment_system-estimate-get) | POST   | Get payment estimate |

#### Subscription

| Endpoint                                                                                                                         | Method | What it does        |
| -------------------------------------------------------------------------------------------------------------------------------- | ------ | ------------------- |
| [`/subscription/avangate/cancel`](/docs/navixy-api/user-api/resources/billing/subscription.md#post-subscription-avangate-cancel) | POST   | Cancel subscription |
| [`/subscription/avangate/list`](/docs/navixy-api/user-api/resources/billing/subscription.md#post-subscription-avangate-list)     | POST   | List subscriptions  |

#### Transaction

| Endpoint                                                                                                | Method | What it does      |
| ------------------------------------------------------------------------------------------------------- | ------ | ----------------- |
| [`/transaction/list`](/docs/navixy-api/user-api/resources/billing/transaction.md#post-transaction-list) | POST   | List transactions |

#### Tariff (plan)

| Endpoint                                                                                 | Method | What it does |
| ---------------------------------------------------------------------------------------- | ------ | ------------ |
| [`/tariff/list`](/docs/navixy-api/user-api/resources/billing/tariff.md#post-tariff-list) | POST   | List plans   |

#### Tracker tariff

| Endpoint                                                                                                                    | Method | What it does           |
| --------------------------------------------------------------------------------------------------------------------------- | ------ | ---------------------- |
| [`/tariff/tracker/change`](/docs/navixy-api/user-api/resources/billing/tariff/tariff_tracker.md#post-tariff-tracker-change) | POST   | Change tracker plan    |
| [`/tariff/tracker/list`](/docs/navixy-api/user-api/resources/billing/tariff/tariff_tracker.md#post-tariff-tracker-list)     | POST   | List plans for tracker |


---

# 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, and the optional `goal` query parameter:

```
GET https://navixy.com/docs/navixy-api/user-api/resources/billing.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

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.
