v8

latestOpenAPI 3.0.0Apache 2.0raw.githubusercontent.com2025-10-165266542.4 MB
DigitalOcean-public.v2-new_Container Registry

List Registry Options (Subscription Tiers and Available Regions)

This endpoint serves to provide additional information as to which option values are available when creating a container registry. There are multiple subscription tiers available for container registry. Each tier allows a different number of image repositories to be created in your registry, and has a different amount of storage and transfer included. There are multiple regions available for container registry and controls where your data is stored. To list the available options, send a GET request to /v2/registry/options.

get/v2/registry/options

Response

The response will be a JSON object with a key called options which contains a key called subscription_tiers listing the available tiers.

Example response

{
  "options": {
    "available_regions": [
      "nyc3"
    ],
    "subscription_tiers": [
      {
        "name": "Basic",
        "slug": "basic",
        "included_repositories": 5,
        "included_storage_bytes": 5368709120,
        "allow_storage_overage": true,
        "included_bandwidth_bytes": 5368709120,
        "monthly_price_in_cents": 500,
        "storage_overage_price_in_cents": 2,
        "eligible": true,
        "eligibility_reasons": [
          "OverRepositoryLimit"
        ]
      }
    ]
  }
}