Station list

Api Description

POST https://rtk.geodnet.com/api/v3/station/list

Request Body

Parameter
Example
Type
Required
Description

appId

geodnet

String

Yes

Application ID

region

USA

String

No

ISO 3166-1 alpha-3 country code (e.g., USA, GBR, DEU, ...)

time

1718150400000

Number

Yes

Current server timestamp (ms)

sign

f4c91395df1b944762293987f4c1fbab

String

Yes

Encrypted signature

Response Body

Parameter
Example
Type
Description

code

1000

Number

Status code

msg

OK

String

Status code description

data

[...]

Array

Station list

data[].name

STN1

String

Base station name

data[].latitude

38.95

Number

Latitude

data[].longitude

-8.15

Number

Longitude

data[].height

140.41

Number

Height

data[].x

4916997.6867

Number

X

data[].y

-704522.4782

Number

Y

data[].z

3987735.6055

Number

Z

data[].status

ACTIVE

String

Base station status (ACTIVE, ONLINE, OFFLINE)

Request Example

{
  "appId": "geodnet",
  "time": 1718150400000,
  "sign": "f4c91395df1b944762293987f4c1fbab"
}

cURL

curl -X POST "https://rtk.geodnet.com/api/v3/station/list" \
  -H "Content-Type: application/json" \
  -d '{
    "appId": "geodnet",
    "time": 1718150400000,
    "sign": "f4c91395df1b944762293987f4c1fbab"
  }'

Response

{
  "code": 1000,
  "msg": "OK",
  "data": [
    {
      "name": "STN1",
      "latitude": 38.95,
      "longitude": -8.15,
      "height": 140.41,
      "x": 4916997.6867,
      "y": -704522.4782,
      "z": 3987735.6055,
      "status": "ACTIVE"
    }
  ]
}

Last updated