도로명주소로는 검색되지만, 지번주소로 검색되지 않는 주소

아래는 문제의 주소지이고, 도로명주소로 검색한 결과입니다.

https://dapi.kakao.com/v2/local/search/address.json?query=경기%20화성시%20봉담읍%20방골길%2063-7

{
    "documents": [
        {
            "address": {
                "address_name": "경기 화성시 봉담읍 덕리 산 48",
                "b_code": "4159025333",
                "h_code": "4159025300",
                "main_address_no": "48",
                "mountain_yn": "Y",
                "region_1depth_name": "경기",
                "region_2depth_name": "화성시",
                "region_3depth_h_name": "봉담읍",
                "region_3depth_name": "봉담읍 덕리",
                "sub_address_no": "",
                "x": "126.938184018578",
                "y": "37.1632283305703"
            },
            "address_name": "경기 화성시 봉담읍 방골길 63-7",
            "address_type": "ROAD_ADDR",
            "road_address": {
                "address_name": "경기 화성시 봉담읍 방골길 63-7",
                "building_name": "",
                "main_building_no": "63",
                "region_1depth_name": "경기",
                "region_2depth_name": "화성시",
                "region_3depth_name": "봉담읍 덕리",
                "road_name": "방골길",
                "sub_building_no": "7",
                "underground_yn": "N",
                "x": "126.938184018578",
                "y": "37.1632283305703",
                "zone_no": "18336"
            },
            "x": "126.938184018578",
            "y": "37.1632283305703"
        }
    ],
    "meta": {
        "is_end": true,
        "pageable_count": 1,
        "total_count": 1
    }
}

그러나 지번주소로 검색 시 결과가 없습니다.

https://dapi.kakao.com/v2/local/search/address.json?query=경기%20화성시%20봉담읍%20덕리%20산%2048

{
    "documents": [],
    "meta": {
        "is_end": true,
        "pageable_count": 0,
        "total_count": 0
    }
}

@쿨해머0052

안녕하세요,

“경기 화성시 봉담읍 덕리 산48” 주소는 폐지된 지번이나
도로명 주소 시스템에 해당 사항 반영이 되지 않았던 것으로 확인하였습니다.

해당 사항 수정 요청 및 처리 완료되어
현재는 “봉담읍 방골길 63-7” 쿼리 시
아래와 같이 유효한 지번주소로 결과를 받으실 수 있습니다.

감사합니다.

{
"address":{
"address_name": "경기 화성시 봉담읍 덕리 385-2",
"b_code": "4159025333",
"h_code": "4159025300",
"main_address_no": "385",
"mountain_yn": "N",
"region_1depth_name": "경기",
"region_2depth_name": "화성시",
"region_3depth_h_name": "봉담읍",
"region_3depth_name": "봉담읍 덕리",
"sub_address_no": "2",
"x": "126.938184018578",
"y": "37.1632283305703"
},
"address_name": "경기 화성시 봉담읍 방골길 63-7",
"address_type": "ROAD_ADDR",
"road_address":{
"address_name": "경기 화성시 봉담읍 방골길 63-7",
"building_name": "",
"main_building_no": "63",
"region_1depth_name": "경기",
"region_2depth_name": "화성시",
"region_3depth_name": "봉담읍 덕리",
"road_name": "방골길",
"sub_building_no": "7",
"underground_yn": "N",
"x": "126.938184018578",
"y": "37.1632283305703",
"zone_no": "18336"
},
"x": "126.938184018578",
"y": "37.1632283305703"
}