Get all stations

GET https://ppk.geodnet.com/api/user/station/list

Request Header

Header
Example
Type
Required
Description

token

eyJhbGciOiJIUzI1Ni...

String

Yes

JWT from sign in

Response Body application/json

Parameter
Example
Type
Description

code

200

Number

Status code

message

Success

String

Status code description

data.stations

[...]

Array

Station list

data.stations[].name

G001

String

Station name

data.stations[].status

ACTIVE

String

ONLINE/ACTIVE/OFFLINE

data.stations[].coordinate

{...}

Object

Coordinate info (Deprecated)

data.stations[].coordinate.ITRF2020

[-2687303.0592,-4302926.7171,3852731.263]

Array

[x,y,z] ITRF2020

data.stations[].coordinate.ITRF2020(2015)

[...]

Array

[x,y,z] ITRF2020(2015)

data.stations[].coordinate.WGS84

[...]

Array

[x,y,z] WGS84

data.stations[].coordinate.local

[...]

Array

[x,y,z] Local

data.stations[].highPrecision

[...]

Array

High precision coordinate list

data.stations[].highPrecision[].name

ITRF2020(2025.50)

String

Coordinate system

data.stations[].highPrecision[].epoch

2025.5

Number

Epoch

data.stations[].highPrecision[].x

-2687303.0592

Number

X

data.stations[].highPrecision[].y

-4302926.7171

Number

Y

data.stations[].highPrecision[].z

3852731.263

Number

Z

Caution: If x, y, z is 0, the coordinates are invalid.

cURL

curl -X GET "https://ppk.geodnet.com/api/user/station/list" \
  -H "token: eyJhbGciOiJIUzI1Ni..."

Response 200 Success

{
  "code": 200,
  "message": "Success",
  "data": {
    "stations": [
      {
        "name": "G001",
        "status": "ACTIVE",
        "coordinate": {
          "ITRF2020": [-2687303.0592, -4302926.7171, 3852731.263],
          "ITRF2020(2015)": [-2687302.8158, -4302926.9653, 3852731.1618],
          "WGS84": [-2687303.0595, -4302926.7172, 3852731.2649],
          "local": [-2687301.916, -4302928.3503, 3852731.1364]
        },
        "highPrecision": [
          { "name": "ITRF2020(2025.50)", "epoch": 2025.5, "x": -2687303.0592, "y": -4302926.7171, "z": 3852731.263 },
          { "name": "ITRF2020(2015.00)", "epoch": 2015, "x": -2687302.8158, "y": -4302926.9653, "z": 3852731.1618 },
          { "name": "WGS84(G2139)(2025.50)", "epoch": 2025.5, "x": -2687303.0595, "y": -4302926.7172, "z": 3852731.2649 },
          { "name": "NAD83(2011)(2010.00)", "epoch": 2010, "x": -2687301.916, "y": -4302928.3503, "z": 3852731.1364 }
        ]
      }
    ]
  }
}

Last updated