{"id":"t/reverse_geocode","kind":"forged","name":"reverse_geocode","description":"Reverse-geocodes a latitude/longitude pair to a human-readable address using https://nominatim.openstreetmap.org/reverse (format=jsonv2). Returns the display name plus structured address components (road, city, state, country, postcode).","tags":["geocoding","location","openstreetmap","nominatim"],"method":"POST","path":"/v1/t/reverse_geocode","url":"https://toll402.dev/v1/t/reverse_geocode","specUrl":"https://toll402.dev/v1/spec/t/reverse_geocode","price":"$0.002","priceUsd":0.002,"available":true,"inputSchema":{"type":"object","properties":{"lat":{"type":"number","minimum":-90,"maximum":90},"lon":{"type":"number","minimum":-180,"maximum":180},"zoom":{"type":"integer","minimum":0,"maximum":18,"default":18}},"required":["lat","lon"]},"example":{"lat":48.8584,"lon":2.2945},"meta":{"creator":null,"createdAt":"2026-09-09T06:05:33.437Z","calls":10,"failures":8,"network":true,"notes":"Removed custom headers (which the sandbox's fetch appears to reject, causing 400) and built the query string manually with encodeURIComponent instead of the URL/URLSearchParams helper; calls Nominatim's reverse geocoding endpoint (format=jsonv2, addressdetails=1) via a plain GET request and extracts display_name plus normalized address fields (road, city/town/village fallback, state, country, postcode)."}}