Has anyone else experienced issues with not being able to access OAI API after getting their Tier upgraded? As soon as I added more credit, I started getting: 429 - Rate limit reached for requests … for even a simple API call.
Usage dashboard shows no issue or error.
Support is slow and I keep getting canned answers so wondering if anyone else experienced this and how it was resolved?
Thank you!
1 Like
@soniasarao - Welcome to the forum! How simple of an API call are we talking about. Did you try testing it out for one chat completion request?
Thank you! Once my tests started failing, I tested with this super simple one ----
from openai import OpenAI
client = OpenAI(api_key=“my-key”)
response = client.chat.completions.create(
model=“gpt-4o-mini”,
messages=[
{“role”: “user”, “content”: “This is a test.”}
],
max_tokens=10
)
print(response)
---- tested different models too but every time, I just get - 429 - Rate limit reached for requests.
At this point, thinking of spinning up another org to keep moving forward.
Just to close this thread, in case anyone else runs into this - the issue is resolved now.
OpenAI Support team had to escalate this issue to engineering to get it resolved. I might have hit some edge case when I added credits.
1 Like