Is there any Apigee Management api which can give the number of times an api proxy is invoked.
There is an apigee management api to get the message count at organization level but i need to know at api level.
Solved! Go to Solution.
Hey @Ankit Goel You may use Analytics API for this feature.
Here is what a sample API call looks like to analytics API. This will give data between date range of a month.
curl -v "https://api.enterprise.apigee.com/v1/organizations/{org}/environments/{environment}/stats/?select=sum(message_count)&timeRange=03/01/2016%2000:00~03/31/2016%2024:00" -u email
Here you can try it quickly using this link below.
https://apidocs.apigee.com/management/apis/get/organizations/%7Borg_name%7D/stats
Hope that helps.