mirror of
https://github.com/RockChinQ/QChatGPT.git
synced 2024-11-16 11:42:44 +08:00
13 lines
358 B
Python
13 lines
358 B
Python
# OpenAI账号免费额度剩余查询
|
|
import requests
|
|
|
|
|
|
def fetch_credit_data(api_key: str) -> dict:
|
|
"""OpenAI账号免费额度剩余查询"""
|
|
resp = requests.get(
|
|
url="https://api.openai.com/dashboard/billing/credit_grants",
|
|
headers={
|
|
"Authorization": "Bearer {}".format(api_key),
|
|
}
|
|
)
|
|
return resp.json() |