IP Information Lookup

An IP address, or Internet Protocol address, is a numerical identifier assigned to each device connected to a network or the internet.

The associated IP for a specific domain can be obtained by querying the Domain Name System (DNS) for the domain's A (address) record.

Use cases

This information is crucial for various purposes, such as initiating further investigations. It serves as the initial step in probing a server for additional details.

This process enables the creation of a comprehensive map of a target's network infrastructure, facilitates the pinpointing of a server's physical location, aids in identifying the hosting service, and even allows the discovery of other domains hosted on the same IP address.

Query

curl --location --request GET 'https://huntapi.com/api/v1/website/check?include_features=["ip"]' \
--header 'Content-Type: application/json' \
--header 'x-api-key: <token>'
curl --location --request GET 'https://huntapi.com/api/v1/website/check?include_features=["ip"]' \
--header 'Content-Type: application/json' \
--header 'x-api-key: <token>'

Response

{
    "ip": {
        "ip": "199.232.xxx.xxx",
        "asn": "AS54113",
        "org": "FASTLY",
        "city": "Paris",
        "in_eu": true,
        "postal": "75001",
        "region": "Île-de-France",
        "country": "FR",
        "network": "199.232.xxx.x/22",
        "version": "IPv4",
        "currency": "EUR",
        "latitude": 48.xxxx,
        "timezone": "Europe/Paris",
        "languages": "fr-FR,frp,br,co,ca,eu,oc",
        "longitude": 2.xxx,
        "utc_offset": "+0100",
        "country_tld": ".fr",
        "region_code": "IDF",
        "country_area": 547030,
        "country_code": "FR",
        "country_name": "France",
        "currency_name": "Euro",
        "continent_code": "EU",
        "country_capital": "Paris",
        "country_code_iso3": "FRA",
        "country_population": 66987244,
        "country_calling_code": "+33"
    }
}
{
    "ip": {
        "ip": "199.232.xxx.xxx",
        "asn": "AS54113",
        "org": "FASTLY",
        "city": "Paris",
        "in_eu": true,
        "postal": "75001",
        "region": "Île-de-France",
        "country": "FR",
        "network": "199.232.xxx.x/22",
        "version": "IPv4",
        "currency": "EUR",
        "latitude": 48.xxxx,
        "timezone": "Europe/Paris",
        "languages": "fr-FR,frp,br,co,ca,eu,oc",
        "longitude": 2.xxx,
        "utc_offset": "+0100",
        "country_tld": ".fr",
        "region_code": "IDF",
        "country_area": 547030,
        "country_code": "FR",
        "country_name": "France",
        "currency_name": "Euro",
        "continent_code": "EU",
        "country_capital": "Paris",
        "country_code_iso3": "FRA",
        "country_population": 66987244,
        "country_calling_code": "+33"
    }
}