> ## Documentation Index
> Fetch the complete documentation index at: https://docs.anchorbrowser.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Billing

> TypeScript SDK reference for the Billing resource

## getBilling

`GET /v1/billing` — Get Billing Info

```typescript theme={null}
import { client, Billing } from 'anchorbrowser';

// ANCHORBROWSER_API_KEY is read from the environment by default;
// set it explicitly like this:
client.setConfig({ auth: () => 'your-api-key' });

const result = await Billing.getBilling();
console.log(result);
```
