curl --request GET \
--url https://api.gcore.com/cloud/v1/pricing/{project_id}/{region_id}/ai/clusters/{cluster_id} \
--header 'Authorization: <api-key>'
{
"currency_code": "USD",
"discount_percent": 0.16,
"price_per_hour": 1,
"price_per_month": 720,
"price_status": "show",
"price_without_discount_per_month": 604.8
}
Get billing rate of an existing GPU cluster based on the current configuration.
curl --request GET \
--url https://api.gcore.com/cloud/v1/pricing/{project_id}/{region_id}/ai/clusters/{cluster_id} \
--header 'Authorization: <api-key>'
{
"currency_code": "USD",
"discount_percent": 0.16,
"price_per_hour": 1,
"price_per_month": 720,
"price_status": "show",
"price_without_discount_per_month": 604.8
}
API key for authentication. Make sure to include the word apikey
, followed by a single space and then your token.
Example: apikey 1234$abcdef
Project ID
1
Region ID
1
AI cluster ID
OK
Response with prices per hour and per month
Was this page helpful?