Rate limit quota on fresh account

I am getting an error for a freshly top upped account. This is first time. I top upped with $15 and I am getting an rate limit error.

const apiKey = "my api key"
const generateResponseFromAI = async () => {
    const requestBody = {
      "model": "gpt-3.5-turbo",
        "messages": [
            {
                "role": "system",
                "content": "You are a helpful assistant."
            },
            {
                "role": "user",
                "content": "Write a haiku that explains the concept of recursion."
            }
        ],
    };
    try {
      const response = await fetch("https://api.openai.com/v1/chat/completions", {
        method: "POST",
        headers: {
          "Content-Type": "application/json",
          Authorization: `Bearer ${apiKey}`,
        },
        body: JSON.stringify(requestBody),
      })
  
      const data = await response.json();
      console.log(data)
    } catch (error) {
      console.log(error)
    }
};

const value = generateResponseFromAI()

How many of you have got this error when top upped freshly. I also want to know about how you fixed this.

1 Like

SAme here. Check my other topic. We were several users to have that same error on fresh accounts, but somehow someone marked it as “resolved”. It is not resolved at all.

2 Likes

Facing this too… pls help…

1 Like

Same problem here. Company has raised billions, and the very first contact you get with their API is a 2 years old issue hat hasn’t been solved. When you start charging people for services, maybe it’s time to consider improving the customer experience