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

# Partner Portal API Reference

> Manage your customers, pricing, products, and billing through the bunny.net Partner Portal API.

The Partner Portal API provides a RESTful interface for bunny.net partners to manage their customers. Create and invite customers, review pricing, enable products, view billing, and access audit logs.

<Note>
  This API is available to partners only. See the [Partner Portal overview](/docs/partners), or [contact us](https://bunny.net/contact/) if you would like to join the partner program.
</Note>

## Base URL

```
https://api.bunny.net
```

## Authentication

Authenticate using the `AccessKey` header with your partner account API key:

```bash theme={null}
curl --request GET \
  --url https://api.bunny.net/partner/customers \
  --header 'AccessKey: YOUR_API_KEY'
```

<Note>
  Find your API key in the [account
  settings](https://dash.bunny.net/account/settings) under **API Keys**.
</Note>

## Resources

The Partner Portal API provides access to the following resources:

| Resource  | Description                                                           |
| --------- | --------------------------------------------------------------------- |
| Customers | Create, list, and invite customers under your partner account         |
| Pricing   | Review your partner pricing, and the pricing applied to each customer |
| Products  | Enable or disable the products available to your customers            |
| Contract  | Retrieve your partner contract details                                |
| Billing   | View customer billing records and download invoice PDFs               |
| Audit Log | Review the history of actions taken on a customer's account           |
