List billing addons and compute instance selections
get
/v1/projects/{ref}/billing/addonsReturns 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
- refRequiredstring
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": 4213 },14 "meta": null15 }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": 4231 },32 "meta": null33 }34 ]35 }36 ]37}