Page cover image

Get Visitor Data

Get the data associated with a specific IP address.

GET https://getgeoflow.com/beta/api/get-visitor-data

The same properties outlined in the Visitor Data Properties table will be returned in the response, where available or applicable.

This will be based on an IP address you provide in the X-Visitor-IP header. If the header is omitted, the first IP address found in the X-Forwarded-For header will be used.

Headers

Name
Type
Description

Authorization*

String

Bearer <TOKEN>

X-Visitor-IP

String

Visitor IP Address

{
  "continentName": "Oceania",
  "continentCode": "OC",
  "countryName": "Australia",
  "countryCode": "AU",
  "region": "Oceania",
  "nationalCapital": "Canberra",
  "city": "Melbourne",
  "stateName": "Victoria",
  "stateCode": "VIC",
  "postalCode": "3000",
  "isEU": true,
  "timezone": "Australia/Melbourne",
  "latitude": "-37.81590",
  "longitude": "144.96690",
  "airportCode": "MEL",
  "currencyCode": "AUD",
  "currencySymbol": "$",
  "callingCode": 61,
  "language": "en-AU",
  "ASN": 4804,
  "ISP": "Optus",
  "isMobile": false,
  "deviceType": "Desktop",
  "dataSaver": false,
  "reducedMotion": false,
  "colorPreference": "dark",
  "OS": "Windows",
  "currentPage": "getgeoflow.com",
  "referer": "webflow.com",
  "userAgent": "Chrome/118.0.0.0",
  "IP": "192.168.1.1"
}

Last updated

Was this helpful?