As I use the Alchemy API service on Bluemix, I see the daily-transaction-limit-exceeded
message. How can I monitor my transaction usage to determine when I am approaching the limit?
相关问题
- Bluemix Analytics for Apache Spark log file inform
- Not able to push my local app to bluemix
- How to extract current date in watson conversation
- Can I use IBM Watson services without Bluemix?
- Debug nodejs app in CF
相关文章
- Is there an npm module to modify a pdf file in nod
- Kubernetes Persistent Volume Claim mounted with wr
- how to order SoftLayer_Virtual_ReservedCapacityGro
- Can I call the Bluemix message hub service from Py
- GYP ERR! build error. stack Error: 'make'
- Unable to run bms-samples-cordova-hellopush - bms_
- Spark Hive reporting pyspark.sql.utils.AnalysisExc
- Cloud Foundry / Bluemix load balancing
Each API call typically equals many transactions. In the JSON response, you should see a transaction count returned for every API response that you receive from the server. However, you can determine the number of daily transactions that remain using the following query:
curl -i http://access.alchemyapi.com/calls/info/GetAPIKeyInfo?apikey=<api_key>
Replace the<api_key>
variable with your own API key.In the XML that is returned, you will receive a count of your daily usage plus the transaction limit.