How can I find out how many API calls were already made against the rate limit for the IBM Watson Conversation sevice?
Asked
Active
Viewed 913 times
1
-
Do you mean how many times you have called, the rate limit, or something else? – data_henrik Nov 16 '16 at 10:45
-
Exactly, for monitoring the rate limit – Filippo Leoncini Nov 16 '16 at 10:52
1 Answers
0
This worked for another service under watson. Check whether same can be used for conversation too.
http://gateway-a.watsonplatform.net/calls/info/GetAPIKeyInfo?apikey="your-api-key"
Should get response as xml.
sample response:
<?xml version="1.0" encoding="UTF-8"?>
<results>
<status>OK</status>
<consumedDailyTransactions>500</consumedDailyTransactions>
<dailyTransactionLimit>1000</dailyTransactionLimit>
</results>

J. Parashar
- 1,477
- 2
- 15
- 24