Skip to content
Free Indian Tools

SEO

IndexNow protocol for Indian publishers — adopt it for Bing share

IndexNow lets you ping Bing, Yandex and a few others when content changes — indexed within minutes. Google has not adopted it. When and how to set it up.

22 April 2026 · 2 min read


Quick frame: IndexNow is a free open protocol supported by Bing, Yandex, Naver and Seznam. You ping a single endpoint when content changes; all participating engines pick up the URL within minutes. Google has not adopted it. Worth implementing for the Bing share alone.

How it works

  1. Generate a key file (a random string), host it at /<key>.txt at your domain root.
  2. When content publishes or updates, POST the URL to https://api.indexnow.org/IndexNow with your key.
  3. Participating engines fetch and index within minutes.

That's it. No account, no dashboard, no rate limit (within reason).

What it doesn't do

  • Google does not support IndexNow. No matter how often Cloudflare or third parties claim "Google has IndexNow", Google's position is unchanged: they prefer their existing crawl model.
  • Doesn't replace sitemaps. IndexNow is for change notifications. Sitemaps remain the source of truth for the full URL set.
  • Doesn't bypass quality checks. Pinged URLs still go through normal quality evaluation.

Why bother if Google doesn't support it?

Three reasons:

  1. Bing share is real, especially for B2B. India's Bing market share is small (~3%) but skewed B2B / enterprise. For SaaS sites and B2B publishers, this matters.
  2. Yandex matters if you have Russia / CIS audience.
  3. Pre-positioning. Google may eventually adopt. Sites already integrated will reap the benefit immediately.

Implementation patterns

WordPress / Ghost

Plugins exist (IndexNow for WordPress, IndexNow integration for Ghost). Install, configure key, done.

Custom / headless

In your CMS publish hook, fetch the IndexNow endpoint:

fetch('https://api.indexnow.org/IndexNow', {
  method: 'POST',
  headers: { 'Content-Type': 'application/json' },
  body: JSON.stringify({
    host: 'www.example.in',
    key: 'YOUR_KEY_HERE',
    urlList: ['https://www.example.in/blog/new-post']
  })
})

CDN-level

Cloudflare has built-in IndexNow integration that pings on cache purge. Enable in dashboard.

After implementing

Pair with strong sitemap hygiene via the XML sitemap generator and reasonable robots.txt. The broader Google discovery channels are in how Google discovers new pages.

FAQ

Q. Can I bulk-ping at launch? A. Yes — submit up to 10,000 URLs per POST. Useful for fresh sites or migration.

Q. What happens if I ping a URL that returns 404? A. Engines fetch and see 404 — no harm, just wasted ping. Don't ping deleted URLs.

Q. Does IndexNow respect robots.txt? A. Yes — engines still honour your robots.txt rules when fetching the pinged URLs.

Try the free tool

XML Sitemap Generator

Paste URLs → standards-compliant XML sitemap with lastmod and priority.

Open XML Sitemap Generator

Related guides