> ## Documentation Index
> Fetch the complete documentation index at: https://bunnynet-cb9733c2-claude-slack-session-favglo.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Magic Containers API Reference

> Create, modify or delete your Magic Containers applications configuration.

The Magic Containers API provides a RESTful interface for managing your magic containers applications.

## Base URL

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

## Authentication

Authenticate using the `AccessKey` header with your Bunny Net Access Key:

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

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

## Metric units

Some fields returned by the API report usage in different units:

* **CPU** (for example, `averageCPU`) is reported **relative to your application's CPU limit**, not as an absolute number of cores. On the dynamic runtime the limit is 8 CPUs, so the value is roughly 12.5× the number of cores the container actually uses. To convert it to absolute cores, multiply by the CPU limit and divide by 100.
* **RAM** (for example, `averageRAM`) is reported as an **absolute value**.

For a full explanation of the dashboard metrics and how CPU usage relates to your CPU limit, see [Monitoring](/magic-containers/monitoring).
