Skip to main content
The API provides two endpoints for retrieving Magic Containers node IP addresses: https://api.bunny.net/mc/nodes returns a JSON array, and https://api.bunny.net/mc/nodes/plain returns plain text with one IP per line.
The list returned from the API is dynamic, make sure to request it periodically to avoid missing newly added IPs.
curl -H "Accept: application/json" https://api.bunny.net/mc/nodes
{
  "items": [
    "104.166.147.46",
    "109.61.83.105",
    "109.61.83.248"
  ],
  "meta": {
    "totalItems": 3
  },
  "cursor": "<string>"
}