I got Rate limit error while accessing the gpt-5-mini using API calls.

Sen0299 120 Reputation points
2026-09-17T12:16:42.4733333+00:00

Hi, I got below error. How to increase this limit in Azure portal for this model ?

RateLimitError: Error code: 429 - {'error': {'message': 'Your requests to gpt-5-mini for gpt-5-mini in eastus2 have exceeded rate limit.', 'type': 'too_many_requests', 'param':  None, 'code': 'rate_limit_exceeded'}}

Azure OpenAI in Foundry Models
0 comments No comments

Answer accepted by question author
Jose Benjamin Solis Nolasco 12,601 Reputation points Volunteer Moderator
2026-09-17T12:57:29.86+00:00

@Sen0299 I hope you are doing well,

Welcome to Microsoft Q&A,

The 429 rate_limit_exceeded error means the deployment has reached its configured throughput limit.For standard deployments, Azure OpenAI quota is allocated in Tokens Per Minute (TPM), and the corresponding Requests Per Minute (RPM) limit is derived from that allocation. You can increase the allocation from the Microsoft Foundry portal:

Manage → Quota → Token per minute → select the deployment → Request Quota https://learn.microsoft.com/en-us/answers/questions/2243296/how-to-increase-tokens-per-day-quota-limit

User's image

You can also reduce TPM allocated to another deployment of the same model/region if unused quota is available.

Microsoft documents this here: https://learn.microsoft.com/en-us/azure/foundry/openai/how-to/quota

Also consider implementing retry/backoff for 429 responses rather than immediately retrying requests.

If this answer helped clarify the platform capabilities and save you troubleshooting time, please consider marking it as Accepted. This helps others in the community find similar solutions.

Was this answer helpful?

1 person found this answer helpful.
0 comments No comments

0 additional answers

Sort by: Newest

Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.