We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
It would be nice to be able to get some user information -- specifically how many tokens are left in the user's account.
The text was updated successfully, but these errors were encountered:
Did you find API endpoints for this? (i was looking for the same thing with openais gpt3 api, but found nothing)
Sorry, something went wrong.
I just created this as a placeholder. I didn't try doing it 😆
import requests auth_header = "Bearer sess-......." ret = requests.get( "https://labs.openai.com/api/labs/billing/credit_summary", headers={"Authorization": auth_header}, ) print(ret.json())
returns {'aggregate_credits': 545, 'next_grant_ts': 1661754850, 'breakdown': {'free': 0, 'paid_dalle_15_115': 545}, 'object': 'credit_summary'}
{'aggregate_credits': 545, 'next_grant_ts': 1661754850, 'breakdown': {'free': 0, 'paid_dalle_15_115': 545}, 'object': 'credit_summary'}
I will add this asap 🔥
No branches or pull requests
It would be nice to be able to get some user information -- specifically how many tokens are left in the user's account.
The text was updated successfully, but these errors were encountered: