Hello @Deepakraj P ,
To achieve seamless API migration objective you need to implement the following idea/steps:
- Onboard 2 APIs to 1 API Management instance
https://myorg.azure-api.net/api1/
https://myorg.azure-api.net/api2/ - Spin up Azure Application Gateway with 2 http listeners in front of API Management
https://a.hummingbot.in/
https://b.hummingbot.in/ - Implement the following routing leveraging "Rewrite a URL" capability - https://learn.microsoft.com/en-us/azure/application-gateway/rewrite-url-portal https://a.hummingbot.in/ => https://myorg.azure-api.net/api1/ https://b.hummingbot.in/ => https://myorg.azure-api.net/api2/
As a bonus you can configure Azure Web Application Firewall(WAF) on Application Gateway layer which is not possible to do on API Management. That should increase the security for your API Integrations.
If you find my recommendations helpful to you please mark my answer as accepted or let me know if you have any additional questions.