FATOS Developer
Developer SiteConsole
  • FATOS Developer Introduction
  • FATOS API
    • Map
      • Map control
        • Sources
        • Layers
          • Style Specification
            • Fill
            • Line
            • Symbol
            • Circle
        • Building
        • Bounds
        • Center
        • Heading
        • Flyto
        • Tilt
        • Zoom
        • Marker
          • Instance Members
        • Polyline
        • Polygon
        • Circle
        • On/Off
        • Once
        • Language
        • Theme
        • Cluster
          • Instance Members
      • Button control
      • Utilities
        • Rectangle
        • Distance
        • Area
    • Search
      • Address
      • Geocoding
      • Geofencing
      • Detail
      • Public Transport
        • Bus Route
        • Bus Route Information
        • Bus Stop Information
        • Subway Station Information
        • Subway Station Timetable
        • Public Transit POI within Radius
        • Public Transit POI on Map
        • Subway Station Transfer Information
        • Real-time Bus Location Information
        • Real-time Bus Arrival Information
    • Routing
      • Route
      • Route for truck
      • Route_v2
      • Public Transit Route Search
      • Route Graphic Data
      • Bicycle
      • Pedestrian
    • Analyze
    • Tracking
  • FATOS SDK
    • Authentication
    • Platform
      • Android
        • Start
        • Component
      • iOS
        • Start
        • Component
      • React Native
        • Start
        • Component
  • Get your API Key
  • Release Note
    • FATOS Map API
    • API Server
    • RP Server
  • Troubleshooting
    • FAQ
Powered by GitBook
On this page
  • Parameter
  • Response
  • Response Sample

Was this helpful?

  1. FATOS API
  2. Search

Detail

명칭(POI) 상세 정보 검색

Method
Request URI
Response Type

GET

https:/api.fatos.biz/search/v1/detail

JSON

Parameter

Parameter
Required
Description
Sample

key

Y

Your API Key.

key=xxxxxxxxxxx

poiInfo

Y

POI ID 또는 POI 식별자(pkey)

poiInfo=1130950

findOption

N

조회 옵션

id : POI ID로 조회하는 경우(기본값)

key : POI 식별자로 조회하는 경우

findOption=id

resCoordType

N

응답 좌표계 유형

WGS84GEO: 경위도

EPSG3857: Google Mercator

KATECH: TM128(Transverse Mercator, 횡메카토르), 한국 표준

resCoordType=WGS84GEO

Response

NAME
Type
Description

err

string

If there is an error, write the contents of the error

stype

int

The type of search used for the search. Internal Use

sort

int

The sort type used in the search. Internal Use

pno

int

Page number

cpp

int

Number of searches per page

total

int

Number of searches

items

Array

Search list

id

string

Search ID

frontLon

double

Entry point X coordinates (WGs84)

frontLat

double

Entry point Y coordinates (WGs84)

name

string

Expression name

lat

double

Center X coordinates (WGs84)

lon

double

Center Y coordinates (WGs84)

tel

string

Phone number: delimiter comma (,)

Response Sample

{
    "pno": 1,
    "cpp": 1,
    "totalCnt": 1,
    "totalpg": 1,
    "items": [
        {
            "id": "1130950",
            "viewId": "",
            "dbKind": "S",
            "pkey": "113095001",
            "navSeq": "1",
            "name": "코오롱디지털타워빌란트",
            "bizCatName": "빌딩",
            "address": "서울 구로구 구로동",
            "firstNo": "222",
            "secondNo": "7",
            "zipCode": "",
            "tel": "02-2103-5711",
            "mlClass": "1",
            "lcdName": "서울",
            "mcdName": "구로구",
            "scdName": "구로동",
            "dcdName": "",
            "bldAddr": "서울 구로구 디지털로32길",
            "roadScdName": "",
            "roadName": "디지털로32길",
            "bldNo1": "30",
            "bldNo2": "",
            "lat": "37.48346238",
            "lon": "126.89647528",
            "frontLat": "37.48396232",
            "frontLon": "126.89639194",
            "menu1": "",
            "menu2": "",
            "menu3": "",
            "menu4": "",
            "menu5": "",
            "parkFlag": "",
            "twFlag": "0",
            "yaFlag": "",
            "homepageURL": "",
            "routeInfo": "",
            "facility": "",
            "upperLegalCode": "11",
            "middleLegalCode": "530",
            "lowerLegalCode": "102",
            "detailLegalCode": "00",
            "upperAdminCode": "11",
            "middleAdminCode": "530",
            "lowerAdminCode": "540",
            "upperCode": "",
            "middleCode": "",
            "lowerCode": "",
            "participant": "",
            "point": "",
            "merchantFlag": "",
            "merchantDispType": "",
            "additionalInfo": "",
            "desc": "",
            "mngName": "",
            "mngId": "",
            "freeYn": "",
            "reservYn": "",
            "useTime": "",
            "payYn": "",
            "fee": "",
            "updateDt": "",
            "totalCnt": "0",
            "evChargers": []
        }
    ]
}
PreviousGeofencingNextPublic Transport

Last updated 2 years ago

Was this helpful?