GET
/
verify
/
v1
/
ip
curl --request GET \
  --url https://api.customeros.ai/verify/v1/ip \
  --header 'X-CUSTOMER-OS-API-KEY: <api-key>'
{
  "ip": {
    "geolocation": {
      "city": "Berlin",
      "country": "Germany",
      "countryIso": "DE",
      "isEuropeanUnion": true
    },
    "ipAddress": "192.168.1.1",
    "network": {
      "asn": "AS12345",
      "domain": "isp.com",
      "name": "ISP Name",
      "route": "192.168.0.0/16",
      "type": "business"
    },
    "organization": {
      "domain": "company.com",
      "linkedin": "https://linkedin.com/company/company",
      "name": "Company Name"
    },
    "threats": {
      "isCloudRelay": false,
      "isDatacenter": false,
      "isMobile": false,
      "isProxy": false,
      "isTor": false,
      "isUnallocated": false,
      "isVpn": false
    },
    "time_zone": {
      "abbr": "<string>",
      "current_time": "2024-09-10T14:00:00+01:00",
      "is_dst": true,
      "name": "<string>",
      "offset": "+0100"
    }
  },
  "requestId": "1234567890abcdef",
  "status": "success"
}

Authorizations

X-CUSTOMER-OS-API-KEY
string
header
required

Query Parameters

address
string
required

IP address to analyze

Response

200
application/json
IP intelligence data retrieved successfully

Response containing IP intelligence data including threats, geolocation, and network information

ip
object

IP intelligence details required: true

requestId
string
Example:

"1234567890abcdef"

status
string

Status indicates the result of the operation ("success" or "error")

Example:

"success"