Tutorial Submit a URL to IndexNow# How to Submit Individual URLs# If one or more of your website pages have changed and you want each page to be reindexed, you can submit individual URLs to the IndexNow API using the submit_url_to_index_now() method: Python 1 2 3 4 5 6 7 8 9 10 11 12 13from index_now import submit_url_to_index_now, IndexNowAuthentication authentication = IndexNowAuthentication( host="example.com", api_key="a1b2c3d4", api_key_location="https://example.com/a1b2c3d4.txt", ) submit_url_to_index_now(authentication, "https://example.com/page1") submit_url_to_index_now(authentication, "https://example.com/page2") submit_url_to_index_now(authentication, "https://example.com/page3") Was this page helpful? Thank you for your feedback! Thank you for your feedback! Help us improve this page by using our feedback form.