An Azure service that provides access to OpenAI’s GPT-3 models with enterprise capabilities.
Hello Chris Moseley,
Welcome to Microsoft Q&A and Thank you for the questions.
I completely understand the frustration here, spending time waiting on quota approval and then discovering the required API isn’t supported in that region is not a great experience.
Current status of the Responses API
- The Responses API is now generally available (GA)
- However, availability is still region-dependent in Azure OpenAI
- Not all Azure regions (even major ones) have support enabled yet
So while it’s the recommended API, rollout across regions is still in progress
What’s happening in your case
What you’re seeing is expected given current regional support:
- Your deployment and quota are fine
- The error occurs because West Europe does NOT currently support the
/v1/responsesendpoint
This is why Deployment succeeds, But API calls fail at runtime with “not found” / unsupported errors
European regions that support Responses API
- France Central
- Germany West Central
- Italy North
- Spain Central
- Sweden Central
- Switzerland North
- UK South
European regions that do NOT support it (yet)
- West Europe
- UK West
Why this gap exists
Azure OpenAI rolls out capabilities in phases:
Even GA features are not instantly available in all regions
Rollout depends on Backend capacity, Infrastructure readiness, Regional demand
That’s why you can:
- Get quota in a region
- Deploy models successfully
- But still not have access to specific APIs
Workarounds
1. Deploy in a supported EU region
If EU data residency is required, consider:
- Sweden Central
- Germany West Central
- France Central
- Switzerland North
These currently support the Responses API.
2. Use Global Standard / Data Zone deployments
- These can route requests to supported regions behind the scenes
- Useful if you want abstraction from regional gaps
3. Add a routing layer
Use Azure Front Door, API Management
To route traffic to regions where Responses API is available
Please refer this
Standard vs. Global/Data-Zone deployments: https://learn.microsoft.com/azure/ai-services/openai/how-to/deployment-types#deployment-types
I Hope this helps. Do let me know if you have any further queries.
If this answers your query, please do click Accept Answer and Yes for was this answer helpful.
Thank you!