Hi, i'm trying to create a pod from a python script and am having trouble, I checked all the billing inf o # Check your account/billing info
response = requests.post(
f"https://api.runpod.io/graphql?api_key={API_KEY}",
headers={"content-type": "application/json"},
json={
"query": """
query {
myself {
id
currentSpendPerHr
machineQuota
referralEarned
signedTermsOfService
spendLimit
}
}
"""
},
)
print(response.json()) -- and got machineQuota = 0 , my user id is google-oauth2|106148940261174242555 I have funds and a payment method - any suggestions?
Apollo server landing page