Last month I shipped 38 new pages across two affiliate sites in a single weekend. Then I hit the boring question every publisher hits: how do I get Google to actually see them before the keywords go cold?
I had two tools on the table โ IndexNow and Google Search Console. Everyone has an opinion. I wanted numbers. So I split the batch and timed both.
Why I ran this test
I kept reading the same two claims. "IndexNow is instant." "Search Console is the only thing Google really trusts." Both can't be the full story. I run my own static sites, I control the deploy, and I had a fresh batch of near-identical pages โ a clean enough setup to actually measure the gap instead of guessing.
IndexNow is a ping protocol. You POST a list of URLs to one endpoint and Bing, Yandex, and a few others get notified at once. Google does not consume IndexNow directly โ that detail ended up mattering a lot.
What I actually did
I took 38 pages and split them into two groups of 19, matched by topic and word count so neither group had an unfair quality edge. Group A only got an IndexNow ping. Group B only got a manual "Request Indexing" in Search Console plus a fresh sitemap submission. Nothing else changed.
The IndexNow ping is one request. Here is the exact call I used:
# POST a batch of URLs to the IndexNow endpoint
curl -X POST "https://api.indexnow.org/indexnow" \
-H "Content-Type: application/json" \
-d '{
"host": "yoursite.com",
"key": "YOUR_INDEXNOW_KEY",
"keyLocation": "https://yoursite.com/YOUR_INDEXNOW_KEY.txt",
"urlList": [
"https://yoursite.com/page-1",
"https://yoursite.com/page-2"
]
}'
The key file must exist at keyLocation before you ping, or the
request gets silently ignored. I lost half a day to this on my first site. Deploy the
.txt key first, then submit.
The full setup, if you're starting cold:
- Generate a key. Any 8โ128 char hex string works. I use a UUID with the dashes stripped.
- Host the key file. Drop
KEY.txtat your domain root, containing only the key. - Submit your URLs. Fire the POST above on every publish or update โ I wired it into my deploy script so it runs automatically.
- Verify in Bing Webmaster Tools. It shows IndexNow submissions and whether they were accepted.
What happened
Here's the part nobody tells you up front. IndexNow was dramatically faster โ but not on Google.
On Bing, the IndexNow group was crawled within hours. By the next morning, 17 of 19 pages were indexed on Bing. The Search Console group? Bing barely touched it for days, because I never pinged Bing for those.
On Google, the story flipped. The Search Console "Request Indexing" group started getting crawled within 1โ2 days, and 14 of 19 were indexed inside a week. The IndexNow-only group on Google? It indexed at roughly the same pace as if I'd done nothing โ Google just crawled it through the normal sitemap cycle, around 5โ9 days.
IndexNow doesn't make Google faster. It makes Bing instant. Those are two different wins.
So which one actually moves rankings faster?
Wrong question, which is what I learned. Indexing speed and ranking speed aren't the same lever. Neither tool ranks a page โ they just get it seen. But getting seen faster means your ranking clock starts earlier, and on time-sensitive content that's real money.
The honest breakdown after the test:
- Need Google indexing fast: Search Console "Request Indexing" still wins. It's manual and rate-limited, but it works.
- Need Bing / ChatGPT-search / Yandex coverage: IndexNow, no contest. It's automated and near-instant.
- Running a static site at scale: Do both. IndexNow on every deploy, Search Console sitemap always current, manual requests for priority pages only.
Every deploy auto-fires IndexNow โ a tiny serverless function hanging off my build, classic workflow automation. Set it once, forget it forever. My sitemap regenerates on build. For the 3โ5 pages I most want ranked this week, I still open Search Console and request indexing by hand. Belt and suspenders.
Key takeaways
- IndexNow is a Bing/Yandex speed tool, not a Google tool. Stop expecting Google magic from it.
- Search Console is still the fastest reliable path into Google's index for individual pages.
- The two aren't competitors. They cover different search engines, and AI search increasingly pulls from Bing's index.
- Automate IndexNow so it costs you nothing. Reserve manual Search Console requests for pages that matter this week.
What I'll do next
I want to measure the AI-search angle directly โ whether faster Bing indexing via IndexNow correlates with showing up in ChatGPT and Copilot answers, since both lean on Bing's index. That's the next test, and I'll publish the numbers when I have them.
Want this built for your team?
I design AI agents and growth automation that run without babysitting. If that sounds useful, let's talk.
Get in touch โ