개발자 참고자료
IP 지리적 위치 API 문서
IP 지리적 위치 API 문서: 지리적 위치, ASN/네트워크 정보 및 보안 신호를 포함한 포괄적인 IP 인텔리전스입니다. 직접 IP 조회 및 도메인 확인을 지원합니다. Tor 종료 노드 탐지, 클라우드 제공자 식별 및 사기 방지 및 보안 분석을 위한 데이터센터 탐지로 강화됩니다.
IP 지리적 위치
지리적 위치, ASN/네트워크 정보 및 보안 신호를 포함한 포괄적인 IP 인텔리전스입니다. 직접 IP 조회 및 도메인 확인을 지원합니다. Tor 종료 노드 탐지, 클라우드 제공자 식별 및 사기 방지 및 보안 분석을 위한 데이터센터 탐지로 강화됩니다.
GET
/v1/ip
쿼리 매개변수
| 매개변수 | 유형 | 필수 |
|---|---|---|
| ip | string | 선택 사항 |
| domain | string | 선택 사항 |
응답 필드
| 필드 | 유형 |
|---|---|
ip |
string |
domain |
string | null |
geolocation |
object |
geolocation.country |
string |
geolocation.country_name |
string |
geolocation.region |
string |
geolocation.region_name |
string |
geolocation.city |
string |
geolocation.postal |
string | null |
geolocation.latitude |
number |
geolocation.longitude |
number |
geolocation.timezone |
string |
network |
object |
network.asn |
integer | null |
network.asn_name |
string | null |
network.asn_org |
string | null |
network.isp |
string | null |
network.connection_type |
string | null |
security |
object |
security.is_proxy |
boolean |
security.is_vpn |
boolean |
security.is_tor |
boolean |
security.is_tor_exit |
boolean |
security.is_datacenter |
boolean |
security.is_cloud |
boolean |
security.cloud_provider |
string | null |
security.threat_score |
integer |
security.is_vpn_suspected |
boolean |
security.vpn_suspected_provider |
string | null |
security.type_classification |
object |
security.type_classification.type |
string |
security.type_classification.confidence |
string |
security.fcrdns |
object |
security.fcrdns.ptr |
string | null |
security.fcrdns.fcrdns_valid |
boolean | null |
meta |
object |
meta.query_time_ms |
integer |
meta.cached |
boolean |
meta.source |
string |
예제 요청
curl -H "X-API-Key: $DOMSCAN_API_KEY" "https://domscan.net/v1/ip?ip=8.8.8.8&domain=openai.com"
예제 응답
{
"ip": "8.8.8.8",
"domain": null,
"geolocation": {
"country": "US",
"country_name": "United States",
"region": "CA",
"region_name": "California",
"city": "Mountain View",
"postal": "94035",
"latitude": 37.386,
"longitude": -122.0838,
"timezone": "America/Los_Angeles"
},
"network": {
"asn": 15169,
"asn_name": "AS15169",
"asn_org": "Google LLC",
"isp": "Google LLC",
"connection_type": "hosting"
},
"security": {
"is_proxy": false,
"is_vpn": false,
"is_tor": false,
"is_tor_exit": false,
"is_datacenter": true,
"is_cloud": true,
"cloud_provider": "Google Cloud",
"threat_score": 0,
"type_classification": {
"type": "datacenter",
"confidence": "high"
},
"fcrdns": {
"ptr": "dns.google",
"fcrdns_valid": true
}
},
"meta": {
"query_time_ms": 118,
"cached": false,
"source": "ip-api.com+enrichment"
}
}