IndexNow for B2B SaaS: The Discovery Protocol Google Ignores and Bing Relies On
IndexNow is Bing's primary content discovery mechanism — a push-based protocol that cuts indexing time from days to minutes. Here's what it is, why it matters, and how to implement it.

IndexNow for B2B SaaS: The Discovery Protocol Google Ignores and Bing Relies On
Your sitemap tells search engines what exists. Your sitemap does not tell search engines what just changed.
That distinction matters more than most SEO strategies account for. When you publish a new blog post, update a pricing page, or refresh a competitive comparison, the traditional discovery process works like this: search engines crawl your sitemap on their own schedule, notice the new or changed URLs, and eventually re-index the content. For Google, this can take hours to days. For Bing, it can take even longer.
IndexNow is a push-based URL notification protocol that tells participating search engines when URLs are created, updated, or removed. Instead of waiting for search engines to discover changes through crawling, your site proactively notifies them. Bing lists IndexNow as its primary discovery mechanism, mentioning it four times in its official Webmaster Guidelines.
IndexNow cuts the discovery gap from days to minutes. Over 80 million websites now use it. 22% of all clicked URLs in Bing results originated from IndexNow submissions. And Google still doesn't support it — despite testing the protocol since October 2021.
80M+
Websites now actively using IndexNow for instant content discovery
Pressonify, 2026
22%
Of clicked URLs in Bing results originated from IndexNow submissions
Pressonify, 2026
5B+
Daily URL submissions through the IndexNow protocol
Pressonify, 2026
How IndexNow Works
The protocol is straightforward. When a URL on your site changes, your site sends an HTTP request to the IndexNow API with the changed URL. The receiving search engine processes the notification and re-crawls that specific URL.
Content Changes
You publish, update, or remove a page on your site
API Notification
Your site sends the changed URL to the IndexNow endpoint with your verification key
Multi-Engine Distribution
One submission notifies all participating engines — submit once, reach Bing, Yandex, Naver, Seznam, and Yep
Priority Re-crawl
Receiving engines prioritize re-crawling the notified URL instead of waiting for scheduled crawl
Updated Index
Search engine updates its index with the new content — available for ranking and Copilot grounding
The Key Design Decisions
Push vs. pull. Traditional sitemaps are pull-based — search engines fetch your sitemap on their schedule and decide when to re-crawl. IndexNow is push-based — you tell search engines exactly when and what changed. This inverts the control.
One submission, multiple engines. When you submit a URL to any IndexNow-participating search engine, the protocol automatically shares the notification with all other participating engines. Submit to Bing, and Yandex, Naver, Seznam, and Yep also receive the notification.
Key-based verification. To prevent abuse (someone submitting URLs for sites they don't own), IndexNow uses a simple verification mechanism. You generate a key, host a key file at your domain root, and include the key in your API submissions. No OAuth, no complex authentication — just a key file.
Lightweight. Each submission is a single HTTP GET or POST request. No batch processing required. No rate limiting for reasonable use. The protocol is designed to be called on every deploy, not queued for batch submission.
Who Supports IndexNow (and Who Doesn't)
“Bing (primary discovery mechanism). Yandex. Naver (South Korea). Seznam (Czech Republic). Yep. Over 80 million websites actively submit URLs. WordPress plugins: 10M+ active installations across Yoast, Rank Math, and Microsoft's official plugin. Cloudflare integration on all paid plans.”
“Google — has been testing since October 2021 but has not adopted the protocol. Google relies on crawling, sitemaps, and its own URL Inspection API for discovery. No public timeline for IndexNow support.”
The Google question is the elephant in the room. Google has not adopted IndexNow despite testing it for over four years. Google's position appears to be that its existing crawling infrastructure handles discovery adequately. Whether that's true depends on your definition of “adequately” — for many sites, Google's discovery takes hours to days, which is adequate for most content but slow for time-sensitive updates.
For B2B SaaS companies, the practical answer is: implement IndexNow for Bing and the engines that support it, and use Google's URL Inspection API or Search Console for Google-specific discovery. These are not mutually exclusive.
Why IndexNow Matters for B2B SaaS
Copilot Grounding Speed
IndexNow doesn't just affect traditional Bing search results. It directly impacts how quickly your content becomes available for Copilot grounding. If Copilot pulls from Bing's index, and IndexNow is how Bing discovers your content fastest, then IndexNow is the fastest path to Copilot citation eligibility.
When you publish a new competitive analysis, a product update page, or an industry report, the time between publication and Copilot grounding eligibility shrinks from days to minutes with IndexNow.
Freshness as a Signal
Bing explicitly values content freshness as a grounding signal. Pages with accurate dateModified signals and current content get grounding preference. But freshness signals are only useful if Bing knows your content has been updated.
Without IndexNow, the freshness loop is broken: you update content, Bing doesn't know for days, and by the time Bing re-crawls, the freshness window has partially closed. With IndexNow, the loop is tight: update content, notify Bing immediately, Bing re-crawls and recognizes the freshness signal.
Competitive Content Timing
B2B SaaS competitive dynamics move fast. When a competitor raises a round, launches a feature, or changes pricing, your competitive comparison pages need to reflect reality quickly. IndexNow ensures Bing indexes your updated content within minutes — not days.
For companies in fast-moving verticals like fintech, cybersecurity, or healthtech, this timing advantage compounds. The first accurate comparison in Bing's index becomes the grounding source for enterprise buyers asking Copilot about your category.
How to Implement IndexNow
Step 1: Generate a Key
Visit the IndexNow documentation and generate a unique key. This is a random string (e.g., a1b2c3d4e5f6g7h8) that you'll use to verify ownership.
Step 2: Host the Key File
Create a text file named {your-key}.txt containing just your key, and place it at your domain root so it's accessible at https://yourdomain.com/{your-key}.txt.
For Next.js on Vercel, add the file to your public/ directory.
Step 3: Submit URLs on Content Changes
When content changes, send a GET request to the IndexNow endpoint:
https://api.indexnow.org/indexnow?url=https://yourdomain.com/updated-page&key=your-key
For batch submissions (e.g., when you deploy multiple content changes), use the POST endpoint with a JSON body containing up to 10,000 URLs.
Step 4: Automate Submissions
The real value comes from automating submissions. Every approach depends on your deployment setup:
For Vercel/Next.js sites: Create a deploy hook or post-build script that submits all changed URLs. Since Next.js static builds generate a list of all routes, you can diff against the previous build to identify changes.
For WordPress: Install the official Microsoft IndexNow plugin, Yoast SEO (includes IndexNow), or Rank Math (includes IndexNow). These plugins automatically submit URLs when posts are published, updated, or deleted.
For custom CMS: Add an IndexNow API call to your content publishing workflow. When a page is saved/published, fire the IndexNow notification.
Step 5: Verify in Bing Webmaster Tools
Register your site in Bing Webmaster Tools and submit your IndexNow key. This lets you monitor:
- How many URLs you've submitted via IndexNow
- Which submissions Bing has processed
- Any errors in your submissions
IndexNow vs. Traditional Sitemaps
IndexNow does not replace sitemaps. They serve complementary purposes.
| Feature | Sitemap | IndexNow |
|---|---|---|
| Discovery model | Pull — search engine fetches on its schedule | Push — you notify on your schedule |
| What it communicates | Full inventory of URLs + lastmod dates | Specific URLs that just changed |
| Latency | Hours to days (depends on crawl schedule) | Minutes (near-real-time notification) |
| Best for | Full site inventory, new site discovery | Content updates, new pages, deleted pages |
| Google support | Yes | No |
| Bing support | Yes | Yes (primary mechanism) |
Keep your sitemap accurate with correct lastmod values. Implement IndexNow for real-time change notification. The combination gives Bing both the full picture and the real-time signal.
Common Implementation Mistakes
Batch over streaming. Some implementations queue IndexNow submissions and send them in daily batches. This defeats the purpose — the value of IndexNow is real-time notification. Submit URLs as they change, not in delayed batches.
Missing key file. If your key file isn't accessible at the expected URL, Bing rejects all submissions silently. Verify the key file is deployed and accessible after every build.
Submitting unchanged URLs. IndexNow is for notifying about changes, not for re-submitting your entire site inventory daily. Excessive submissions without actual changes can reduce the signal value of your notifications.
Forgetting URL removals. IndexNow supports notifying search engines when URLs are removed — not just when they're created or updated. If you delete a page, notify IndexNow so Bing can remove it from its index promptly.
How Our Agent Checks IndexNow
The Bing & Copilot SEO Compliance Agent includes IndexNow as check M1 in the Discovery & Crawling dimension. The check verifies:
- PASS: IndexNow is integrated and fires on every deploy or content change. Streaming submissions (not batch).
- PARTIAL: IndexNow is partially set up (key registered but not firing on deploys).
- FAIL: No IndexNow implementation. Relying solely on sitemap + crawl for Bing discovery.
This is one of the highest-impact single fixes in the agent's 33 checks. IndexNow implementation is a one-time setup that permanently accelerates every future content change's path to Bing's index and Copilot grounding.
The Bottom Line
IndexNow is the fastest path from content change to Bing index to Copilot grounding eligibility. 80 million websites have already implemented it. 22% of Bing's clicked results come from IndexNow submissions.
Google doesn't support it. That doesn't make it irrelevant — it makes it a Bing-specific advantage. For B2B SaaS companies whose enterprise buyers use Copilot daily through Microsoft 365, the question isn't whether IndexNow is worth implementing. It's how much visibility you're losing every day you don't.
Implement IndexNow. Keep your sitemaps accurate. Run the Bing & Copilot SEO Compliance Agent to verify the full picture. Your content is only useful if search engines know it exists.

Founder, XEO.works
Ankur Shrestha is the founder of XEO.works, a cross-engine optimization agency for B2B SaaS companies in fintech, healthtech, and other regulated verticals. With experience across YMYL industries including financial services compliance (PCI DSS, SOX) and healthcare data governance (HIPAA, HITECH), he builds SEO + AEO content engines that tie content to pipeline — not just traffic.