이 가이드를 사용해 /api/ip에 단일 IP 조회 요청을 보내고, 반환되는 JSON 필드를 이해한 다음, 더 많은 컨텍스트가 필요할 때 실제 브라우저 워크플로우로 전환하세요.
범위를 사실에 맞게 유지하세요. /api/ip는 한 번에 공인 IP 하나를 위한 조회 도우미입니다. 대량 조회, 인증 또는 SLA 보장을 제공하는 API 제품이 아닙니다.
fetch("/api/ip?ip=8.8.8.8")
.then((response) => response.json())
.then((data) => console.log(data));
curl https://comutil.com/api/ip?ip=8.8.8.8
{
"asn_registry": "arin",
"asn": "15169",
"asn_cidr": "8.8.8.0/24",
"asn_country_code": "US",
"asn_date": "1992-12-01",
"asn_description": "GOOGLE, US",
"network": {
"name": "GOGL",
"country": "US",
"start_address": "8.8.8.0",
"end_address": "8.8.8.255",
"type": "DIRECT ALLOCATION",
"status": "active",
"links": []
},
"nir_postal_code": null,
"nir_range": null,
"address": "1600 Amphitheatre Parkway",
"email_admin": "arin-contact@google.com",
"email_tech": null
}
주소나 연락처 세부 정보를 해석하기 전에 소유권과 범위를 설명하는 필드부터 확인하세요.
다음은 실제 엔드포인트의 현재 제약 사항이므로 자동화도 이에 맞춰 유지하세요.
규약을 이해하려면 문서 경로를 사용하고, 더 풍부한 조사 컨텍스트나 공유 가능한 조회 페이지가 필요할 때는 실제 브라우저 워크플로우로 이동하세요.