GET /analytics/cost
GET
/analytics/cost
const url = 'https://example.com/analytics/cost';const options = {method: 'GET'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://example.com/analytics/costResponses
Section titled “Responses”Successful response.
default
Section titled “default”Error response (see src/core/errors.ts).
