Public Transit POI within Radius

Retrieves public transportation POI information with specified points and radius

MethodRequest URIResponse Type

GET

https://api.fatos.biz/pubtrans/pointSearch

json, xml

Parameter

ParameterRequiredDescriptionSample

key

Y

Your API Key

key=xxxxxxxxxxx

lang

N

Select Result Language

(Korean: 0, English: 1, Japanese: 2, Chinese (simplified): 3, Chinese (traditional): 4, Vietnamese: 5)

  • For Vietnamese, only in the metropolitan area

default = 0

lang=1

output

N

Output format (json, xml)

default = json

output=json

x

Y

longitude

x=126.896038

y

Y

latitude

y=37.482901

radius

N

radius

radius=250

stationClass

N

Type of stop (multiple selections available)

1:2 (default)

1: Bus stop

2: Subway station

3: Train station

4: Express Bus Terminal

5 : Airport

6: Intercity Bus Terminal

7: Port (to be updated)

stationClass=1:2

Response

NameTypeDescription

result

node

Top node

count

int

Number of POIs for public transportation

station

node

List of public transportation POIs

stationClass

int

Type of POI for public transportation

1: Bus stop

2: Subway station

3: Train station

4: Express Bus Terminal

5 : Airport

6: Intercity Bus Terminal

7: Port

stationName

string

Public Transportation POI Name

stationID

int

Public transportation POI ID

type

int

Route type

(only for stationClass 2)

laneName

string

Route name

(only for stationClass 2)

laneCity

string

Route region name

(only for stationClass 2)

stationType

int

Intercity bus stop type

(1: Intercity bus terminal, 2: Intercity bus stop)

(for stationClass 6 only)

x

double

longitude

y

double

latitude

arsID

string

Station unique number

ebid

string

Station unique number

nonstopStation

int

Station unique number an undecided stop

(0:stop, 1:not stopped)

Response Sample

{
	"result": {
		"count": 10,
		"station": [
			{
				"nonstopStation": 0,
				"stationClass": 1,
				"stationName": "디지털산업1단지",
				"stationID": 102173,
				"x": 126.89504,
				"y": 37.48391,
				"arsID": "17-124",
				"ebid": "17-124"
			},
			{
				"nonstopStation": 0,
				"stationClass": 1,
				"stationName": "JNK디지털타워",
				"stationID": 93080,
				"x": 126.89745,
				"y": 37.482166,
				"arsID": "17-635",
				"ebid": "17-635"
			},
			...
		]
	}
}

Last updated