> For the complete documentation index, see [llms.txt](https://fatos-doc.fatos.biz/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://fatos-doc.fatos.biz/fatos-api/search/detail.md).

# Detail

| 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        | <p>조회 옵션</p><p> id : POI ID로 조회하는 경우(기본값) </p><p>key : POI 식별자로 조회하는 경우</p>                                                 | findOption=id         |
| resCoordType | N        | <p>응답 좌표계 유형</p><p>WGS84GEO: 경위도</p><p>EPSG3857: Google Mercator</p><p>KATECH: TM128(Transverse Mercator, 횡메카토르), 한국 표준</p> | 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

```json
{
    "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": []
        }
    ]
}
```
