1

How can I find out how many API calls were already made against the rate limit for the IBM Watson Conversation sevice?

data_henrik
  • 16,724
  • 2
  • 28
  • 49
Filippo Leoncini
  • 347
  • 3
  • 15

1 Answers1

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