We have a server-side PHP proxy making POST requests to the ORS Directions v2 API. It used to work, but recently started getting a 502 Bad Gateway response.
Details:
- Endpoint:
https://api.heigit.org/openrouteservice/v2/directions/{profile}(also triedhttps://api.openrouteservice.org/v2/directions/{profile}) - Method: POST
- Headers:
Content-Type: application/json,Authorization: <api-key>,Accept: application/json, application/geo+json - Profile:
driving-car - Body:
{"coordinates":[[lng,lat],[lng,lat]],"instructions":true,"geometry":true}
Both hosts resolve to the same IP (129.206.5.53) and return the same response:
<head><title>502 Bad Gateway</title></head>
<center><h1>502 Bad Gateway</h1></center>
<hr><center>nginx/1.31.0</center>
The connection succeeds (TLS handshake completes), but nginx returns 502 immediately, suggesting the upstream routing service is unreachable. Is this a known outage or has there been a change to the API endpoint URL? If this is a temporary issue, is there a status page where we can track recovery?
Thanks.