## Get IP address details `client.radar.entities.get(EntityGetParamsquery, RequestOptionsoptions?): EntityGetResponse` **get** `/radar/entities/ip` Retrieves IP address information. ### Parameters - `query: EntityGetParams` - `ip: string` IP address. - `format?: "JSON" | "CSV"` Format in which results will be returned. - `"JSON"` - `"CSV"` ### Returns - `EntityGetResponse` - `ip: IP` - `asn: string` - `asnLocation: string` - `asnName: string` - `asnOrgName: string` - `ip: string` - `ipVersion: string` - `location: string` - `locationName: string` ### Example ```node import Cloudflare from 'cloudflare'; const client = new Cloudflare({ apiToken: process.env['CLOUDFLARE_API_TOKEN'], // This is the default and can be omitted }); const entity = await client.radar.entities.get({ ip: '8.8.8.8' }); console.log(entity.ip); ``` #### Response ```json { "result": { "ip": { "asn": "15169", "asnLocation": "US", "asnName": "GOOGLE", "asnOrgName": "Google LLC", "ip": "8.8.8.8", "ipVersion": "IPv4", "location": "GB", "locationName": "United Kingdom" } }, "success": true } ```