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.

Path parameters

  • ref
    Required
    string

    Project ref

Response codes

  • 200
  • 401
  • 403
  • 429
  • 500

Response (200)

1
{
2
"selected_addons": [
3
{
4
"type": "custom_domain",
5
"variant": {
6
"id": "ci_micro",
7
"name": "lorem",
8
"price": {
9
"description": "lorem",
10
"type": "fixed",
11
"interval": "monthly",
12
"amount": 42
13
},
14
"meta": null
15
}
16
}
17
],
18
"available_addons": [
19
{
20
"type": "custom_domain",
21
"name": "lorem",
22
"variants": [
23
{
24
"id": "ci_micro",
25
"name": "lorem",
26
"price": {
27
"description": "lorem",
28
"type": "fixed",
29
"interval": "monthly",
30
"amount": 42
31
},
32
"meta": null
33
}
34
]
35
}
36
]
37
}