Complete Personalization Stripping
Injects Google's official pws=0 parameter to completely disable algorithmic personalization based on past clicks and search behavior.
Experience authentic algorithmic neutrality. Search Google without cookies, past search history, profile tracking, or filter bubble distortion with our free depersonalized search tool.
I am an SEO Geek from Denmark. I’ve worked with search for over 20 years, helping people understand how Google works and how to use that knowledge to grow. Along the way, I’ve built free tools for keyword research, technical SEO, and SERP analysis. My focus is always on clarity, usefulness, and real data.
Bypass Google's personalization layer to see the objective, unmanipulated web rankings that the world actually sees.
Injects Google's official pws=0 parameter to completely disable algorithmic personalization based on past clicks and search behavior.
Break free from echo chambers and confirmation bias algorithms to uncover authentic, diverse, and impartial search information.
Incognito still reveals your IP address, ISP routing, and location. Impersonal.me standardizes geographic baselines for genuine objectivity.
Access power toggles for verbatim match (tbs=li:1) to stop Google from rewriting your query, and filter=0 to inspect omitted results.
Understand how Google personalizes results, why two people get radically different rankings, and how to audit with genuine neutrality.
| Personalization Signal | How Google Tracks It | SERP Distortion Effect |
|---|---|---|
| 1. Google Account ID | Logged-in Gmail, YouTube, Google Maps, and Chrome sync accounts. | Elevates websites you previously visited or clicked in Gmail/Docs. |
| 2. Historical Click Bias | Persistent browser cookies tracking previous SERP clicks and dwell time. | Websites you frequently visit rise to positions 1–3, giving false impressions of ranking authority. |
| 3. Session Query Velocity | The trail of searches submitted in the past 10–30 minutes. | If you search for apple recipes followed by apple stock, Google's semantic models interpret your intent differently. |
| 4. IP & ISP Triangulation | Physical network IP address and Wi-Fi BSSID beacons. | Pushes local businesses and regional publications ahead of authoritative national resources. |
| 5. Browser Fingerprinting | Canvas API rendering, WebGL fingerprints, installed system fonts, and screen resolution. | Identifies returning devices even across Incognito windows. |
| 6. Device Viewport Class | Mobile smartphone vs. desktop computer vs. tablet. | Mobile-first indexing alters Local 3-Pack prominence and page-speed weighting. |
| 7. SafeSearch Filtering | Algorithmic content moderation filters. | Silently omits sensitive, medical, or adult-adjacent search results unless disabled. |
pws=0 (disables personalization algorithms) and nord=1 (disables network location redirection).&pws=0: Personalized Web Search = 0 (False). Instructs Google's ranking servers to disregard user account personalization, clicked URL histories, and behavioral profile models when ordering organic results.&nord=1: No Redirect = 1 (True). Suppresses Google's automatic network geolocation redirection that attempts to override national search domains.&safe=off: Disables SafeSearch algorithmic filtering, revealing the complete, unredacted index for sensitive, technical, or medical research.pws=0:
import puppeteer from 'puppeteer';
async function fetchUnbiasedSerp(query, country = 'us', language = 'en') {
const browser = await puppeteer.launch({ headless: 'new' });
const page = await browser.newPage();
// Set clean neutral viewport and user agent
await page.setViewport({ width: 1440, height: 900 });
await page.setUserAgent('Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/122.0.0.0 Safari/537.36');
// Build unbiased Google URL
const targetUrl = 'https://www.google.com/search?q=' + encodeURIComponent(query) + '&gl=' + country + '&hl=' + language + '&pws=0&nord=1';
await page.goto(targetUrl, { waitUntil: 'domcontentloaded' });
// Extract organic search results
const results = await page.evaluate(() => {
return Array.from(document.querySelectorAll('div.g')).map(el => {
const titleEl = el.querySelector('h3');
const linkEl = el.querySelector('a');
const snippetEl = el.querySelector('div[data-sncf], div.VwiC3b');
return {
title: titleEl ? titleEl.innerText : null,
url: linkEl ? linkEl.href : null,
snippet: snippetEl ? snippetEl.innerText : null
};
}).filter(r => r.title && r.url);
});
await browser.close();
return results;
}
// Example Execution:
fetchUnbiasedSerp('best crm software').then(console.log);pws=0) and query formulation bias (human search phrasing):
Google's modern AI models (RankBrain & BERT) attempt to confirm the user's premise. If you type a conclusion-seeking query like "why electric cars fail in winter", Google's semantic index prioritizes articles emphasizing battery failure. If you type "why electric cars excel in winter", Google displays articles praising traction control.
The Gold Standard for Researchers: Always pair Impersonal.me's pws=0 parameter with balanced, neutral nouns (e.g. electric vehicles winter performance data) and enable Verbatim mode (tbs=li:1) to force an objective, unvarnished index scan.
An unbiased Google search is a query executed without personal web search algorithms (pws=0), stored browser cookies, user account tracking, or local IP bias. It displays the raw, objective organic ranking baseline as evaluated solely by Google's core ranking algorithms.
No. Incognito mode only prevents your local browser from saving cookies and browsing history. Google still detects your physical IP address, ISP routing, device hardware fingerprint, and applies localized and contextual weighting to the search results.
The 'pws=0' parameter instructs Google to disable Personalized Web Search. It removes algorithmic ranking boosts that Google normally applies based on websites you frequently visit, previous search history, and account behavior.
Google tailors search results based on multiple individual factors: physical location, search history, clicked URLs, device type (mobile vs. desktop), and Google Account profile. Impersonal.me eliminates these factors to show a shared neutral baseline.
No. Impersonal.me operates as a client-side search utility. We do not store search history, we do not require account registration, and we do not run tracking cookies or third-party ad networks.
Yes. Impersonal.me allows you to combine unbiased search (pws=0) with any specific country (gl) or city (uule), allowing you to audit clean, unpersonalized search results as seen by real users in that specific market.
Yes. Impersonal.me includes a SafeSearch toggle that appends safe=off, disabling content censorship for technical, medical, and security research.
Yes. Impersonal.me is 100% free forever with no daily query limits, no subscriptions, and no paywalls.