Передайте координаты устройства, затем используйте полученные city и address вместе с исходными координатами в POST /api/user/addresses.
Security
bearerAuth or jwtCookie
- https://felmee.comhttps://felmee.com/api/geocoder/reverse
- http://localhost:8080http://localhost:8080/api/geocoder/reverse
curl -i -X GET \
'https://felmee.com/api/geocoder/reverse?lat=55.751244&lon=37.618423' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>'Город и полный адрес успешно определены по координатам
Response
{ "success": true, "message": "Location resolved successfully", "codeError": null, "error_code": null, "data": { "city": "Москва", "address": "г Москва, тер Кремль, зд 18" } }