Skip to main content

Get browser info

DELETE 

/v2/browser-info

Returns information about the HTTP request, including the client IP address, country code, request headers, and body length.

This endpoint is designed for proxy testing. It accepts any HTTP method so you can verify that your proxy correctly forwards requests of any type and that client IP addresses are anonymized.

Request

Query Parameters

    skipHeaders boolean

    If true or 1, the response omits the headers field.

    rawHeaders boolean

    If true or 1, the response includes the rawHeaders field with the raw request headers.

Status 200

{
"method": "GET",
"clientIp": "1.2.3.4",
"countryCode": "US",
"bodyLength": 0,
"headers": {},
"rawHeaders": [
"string"
]
}