I’m using aspose to convert pdf to excel by CURL in my php program. First i get token by “https://api.aspose.cloud/connect/token” with client_id and secret_id in the body, and than i convert to excel by “https://api.aspose.cloud/v3.0/pdf/convert/xls?outPath=result.xls” with the token i got and with file in the request, and finally i get the file from the storage by “https://api.aspose.cloud/v3.0/pdf/storage/file/result.xls” with the token.
so, i want to know how can i check how much credits i still have in my account, by API request.
In addition if there us a way to reduce the process so i will not need to call 3 API requests to get converted file i will happy to hear about that.
thank you.