curl --location -g --request GET 'https:///api/v2/analytics/costs/' \
--header 'Ocp-Apim-Subscription-Key: ' \
--header 'Authorization: Bearer '
{
"success": true,
"message": "Overall costs data retrieved successfully",
"data": {
"costs": [
[
{
"date": "2024-05-01",
"total_cost_USD": "0.00350"
},
{
"date": "2024-05-02",
"total_cost_USD": "0.00425"
},
{
"date": "2024-05-03",
"total_cost_USD": "0.00298"
}
]
]
}
}