Get the nearest stations
Parameter
Example
Type
Required
Description
Header
Example
Type
Required
Description
Parameter
Example
Type
Description
https://ppk.geodnet.com/api/user/station?longitude=10&latitude=20Last updated
https://ppk.geodnet.com/api/user/station?longitude=10&latitude=20Last updated
curl -G "https://ppk.geodnet.com/api/user/station" \
-H "token: eyJhbGciOiJIUzI1Ni..." \
--data-urlencode "longitude=10" \
--data-urlencode "latitude=20"{
"code": 200,
"message": "Success",
"data": {
"stations": [
{ "name": "G001", "distance": 10.23 },
{ "name": "G002", "distance": 60.11 }
]
}
}