Having a 0 requests per minute limit with dall e 3

I’m trying to generate images using dall-e-3 with python. I’m using my free sing up creadits. In the website they said I can have 3 request per minute and 200 per day but I can’t generate any Images at all; I get the 429 error.
It says Limit: 0/1min. Current: 1/1min even though the website said I have 3 requests per minute.
openai.RateLimitError: Error code: 429 - {‘error’: {‘code’: ‘rate_limit_exceeded’, ‘message’: ‘Rate limit exceeded for images per minute in organization org-G4UcyBTTtZyzBmZDkjDi4S4y. Limit: 0/1min. Current: 1/1min. Please visit https://platform.openai.com/docs/guides/rate-limits to learn how to increase your rate limit.’, ‘param’: None, ‘type’: ‘requests’}}
I gave them the api key as a n argument while calling the init function in client = client = OpenAI(api_key=os.getenv(“OPEN_AI_API_KEY”))