The beta Buildings API can be a bit chatty if you want to pull back more than one attribute for a single building ID. Because of this, we've added in an include query into the base level Buildings ID call that allows you to request multiple attributes for that building ID in one call.
To use the query you'd run make a get call to this endpoint /v1/buildings/{buildingID}/?include={attribute},{attribute},{attribute}
Example in curl
curl -X GET --header 'Accept: application/json' --header 'Authorization: YOUR_API_KEY_HERE' 'https://api.psma.com.au/beta/v1/buildings/BLDSA0001095169/?include=centroid%2Croof_complexity%2Csolar_panel'
Example in Python