Skip to content
Management API Reference

List billing addons and compute instance selections

get/v1/projects/{ref}/billing/addons

Returns the billing addons that are currently applied, including the active compute instance size, and lists every addon option that can be provisioned with pricing metadata.

The fine-grained token must include the following permissions to access this endpoint:

  • infra_add_ons_read

Path parameters

  • ref
    Required
    string

    Project ref

Response codes

  • 200
  • 401
  • 403
  • 429
  • 500

Response (200)

{
"selected_addons": [
{
"type": "custom_domain",
"variant": {
"id": "ci_micro",
"name": "lorem",
"price": {
"description": "lorem",
"type": "fixed",
"interval": "monthly",
"amount": 42
},
"meta": "lorem"
}
}
],
"available_addons": [
{
"type": "custom_domain",
"name": "lorem",
"variants": [
{
"id": "ci_micro",
"name": "lorem",
"price": {
"description": "lorem",
"type": "fixed",
"interval": "monthly",
"amount": 42
},
"meta": "lorem"
}
]
}
]
}