How can I see specific API(openAI) total usage credit? any way using API?

nope, there's no official API for that,
unless you're having a custom script to do so, there's no way currently
 
Unfortunately not. I always keep the Usage page open in a tab and check it from time to time...
But if you need to get it programmatically, I don't see why it shouldn't be possible to scrape it with Python and Selenium
 
Openai returns the cost for api calls. So what ever app you are using you will need to keep track of cost in that app. Once you track it you can sum it however you want. Ex: based on total cost per user.
That is if you don't have admin dashboard access to your openai account.
 
Back
Top