You publish an excellent article on your Kolonell blog — and it takes 3 weeks to appear on Google. During those 3 weeks, a competitor who published a weaker article but activated IndexNow outranks you on the same query. In 2026, fast indexing has become a standalone SEO lever. Here's how to go from 3 weeks to 24-72h.
TL;DR
- Without action, a new Kolonell article is indexed by Google in 2-4 weeks on average.
- With Search Console (manual request) + IndexNow (Bing/Yandex) + sitemap ping: indexing typically in 24-72h.
- Fast indexing doesn't force ranking — but without it, no ranking possible.
5 actions to index a new article in 24-72h
1. Up-to-date dynamic sitemap
Your sitemap.xml must automatically include new articles. With Next.js (Kolonell case), it's a sitemap.ts file reading the article list and regenerating on each request (or in ISR). Check: is your new article in https://yoursite.com/sitemap.xml after publication?
2. Manual Google Search Console submission
In Search Console → "URL Inspection" tool → paste the article URL → "Request Indexing". Google processes in 24-72h typically. Limit: 10-15 requests/day per property.
3. IndexNow for Bing / Yandex / Seznam
IndexNow is an open protocol supported by Bing, Yandex, Seznam (not Google — but Bing traffic in Senegal represents 8-12%, and Yandex for Russian-speaking diaspora). Free API key generation + HTTP ping on publication. Typically 5-30 min indexing.
4. Google sitemap ping
URL: https://www.google.com/ping?sitemap=https://yoursite.com/sitemap.xml. Faster than waiting for natural re-crawl (can take 7-14 days). Automate on each publication.
5. Internal linking from popular pages
Pages receiving traffic are re-crawled frequently by Google. If your new article is linked from your homepage, your most-read articles, your main service pages — the Google crawler arrives quickly through these links. Often more effective than manual submission.
Typical Next.js architecture for fast indexing
`typescript
// 1. Dynamic ISR sitemap (src/app/sitemap.ts)
export const revalidate = 600; // regenerated every 10 min
export default function sitemap() {
const articles = getPublishedArticles();
return articles.map(a => ({
url: https://yoursite.com/blog/${a.slug},
lastModified: a.publishedAt,
changeFrequency: 'weekly',
priority: 0.8,
}));
}
// 2. Publication webhook triggering:
// a) revalidate('/sitemap.xml')
// b) IndexNow ping
// c) Google sitemap ping
Need a professional website?
Kolonell builds websites that attract clients, optimized for the Sénégalese market. Free quote in 2 minutes.
// d) Bing URL submission
`
IndexNow — setup in 15 minutes
- Generate a key (any 32-128 character string, you keep it)
- Create file
/{key}.txtat site root containing the key itself (ownership verification) - Send POST to
https://api.indexnow.org/indexnowwith:
`json
{
"host": "yoursite.com",
"key": "your-key",
"urlList": ["https://yoursite.com/blog/new-article"]
}
`
Response 200 = accepted. Typical Bing indexing under 24h, Yandex 24-48h.
3 mistakes blocking indexing
- robots.txt blocking /blog/ — check
https://yoursite.com/robots.txt. Must containAllow: /or at minimumAllow: /blog/. noindextag on articles — frequent config bug. Check each article's: no.- Canonical pointing elsewhere — if your article has
, Google won't index it. Check canonical points to itself.
Cost in Dakar
- Indexing audit: 80-150K FCFA
- Search Console + IndexNow + automatic sitemap setup: 150-300K FCFA
- Monthly monitoring + re-submissions: 30-60K FCFA/month
ROI isn't in direct CFA but in time-to-ranking reduction from 3 weeks to 3 days — on a blog publishing 4-8 articles/month, that's 20-40 traffic days gained per month.
---
Your blog takes too long to be indexed by Google?
Kolonell configures the full indexing stack (Search Console + IndexNow + automatic sitemap + publication webhooks) in 1-2 weeks. Free audit at kolonell.com/en/audit-gratuit or WhatsApp +221 77 596 93 33.
FAQ
Does IndexNow work for Google?
No, Google doesn't support IndexNow. For Google, manual Search Console submission + sitemap ping + internal links remain official channels.
How many URLs can I submit per day to Search Console?
Unofficially 10-15 URLs/day/property via URL Inspection tool. Above, Google may rate-limit or ignore. For more volume: rely on sitemap + internal linking.
An already-indexed but poorly ranked article — can I re-submit?
Yes, after substantial content update (not just a word changed). Modify 20-30% of content + re-submit via Search Console = new crawl + re-evaluation.
Should I submit each new e-commerce product page?
No, sitemap + internal navigation suffice. Submit manually only high-impact pages (blog articles, landing pages, flagship products).
Mohamed Ba
Fondateur, Kolonell
Passionate about digital and entrepreneurship in Africa, Mohamed has been helping Sénégalese businesses with their digital transformation since 2020. Founder of Kolonell, he believes every SME deserves a professional and accessible online présence.
