Vivek Shukla

IndexNow Bulk URL Submit Using Curl

Published on
Table of Contents
  1. Payload
  2. Curl

IndexNow is a service which is used to inform search engines i.e. Bing, Naver, Seznam.cz, Yandex and Yep, about the content updates. This improves indexing. More info.

IndexNow API supports upto 10,000 links submission in a day.

Make sure to have a randomly generated key c3755574c3ae4c259262854b0f241ec8.txt at the root of your website. Generate key here

🔗Payload

payload.json

{
	"host": "example.com",
	"key": "random-key",
	"keyLocation": "https://example.com/random-key.txt",
	"urlList": [
		"https://example.com/blog"
	]
}

🔗Curl

curl -v -X POST https://api.indexnow.org/indexnow -H "Content-Type: application/json" -d @payload.json