Google Indexing API Bulk URL Submission
Under maintenance
Pricing
$30.00/month + usage
Google Indexing API Bulk URL Submission
Under maintenance
This Actor allows you to submit multiple URLs for indexing in bulk through Google's Indexing API. It avoids the need to manually request each URL to be indexed via the Google Search Console interface. With this tool, you can quickly submit up to 100 URLs at once.
0.0 (0)
Pricing
$30.00/month + usage
0
Total users
1
Monthly users
1
Last modified
2 days ago
You can access the Google Indexing API Bulk URL Submission programmatically from your own applications by using the Apify API. You can also choose the language preference from below. To use the Apify API, you’ll need an Apify account and your API token, found in Integrations settings in Apify Console.
1from apify_client import ApifyClient2
3# Initialize the ApifyClient with your Apify API token4# Replace '<YOUR_API_TOKEN>' with your token.5client = ApifyClient("<YOUR_API_TOKEN>")6
7# Prepare the Actor input8run_input = {9 "urlsTxt": """https://example.com/10https://example.com/products/""",11 "sitemapUrl": "https://example.com/sitemap.xml",12 "serviceAccount": """{13 \"type\": \"service_account\",14 \"project_id\": \"your-project-id\",15 \"private_key_id\": \"your-private-key-id\",16 \"private_key\": \"-----BEGIN PRIVATE KEY-----\\nYOUR_PRIVATE_KEY\\n-----END PRIVATE KEY-----\\n\",17 \"client_email\": \"your-service-account@your-project.iam.gserviceaccount.com\",18 \"client_id\": \"your-client-id\",19 \"auth_uri\": \"https://accounts.google.com/o/oauth2/auth\",20 \"token_uri\": \"https://oauth2.googleapis.com/token\",21 \"auth_provider_x509_cert_url\": \"https://www.googleapis.com/oauth2/v1/certs\",22 \"client_x509_cert_url\": \"https://www.googleapis.com/robot/v1/metadata/x509/your-service-account@your-project.iam.gserviceaccount.com\"23}""",24}25
26# Run the Actor and wait for it to finish27run = client.actor("mabdulmoghni/google-indexing-api-bulk-url-submission").call(run_input=run_input)28
29# Fetch and print Actor results from the run's dataset (if there are any)30print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])31for item in client.dataset(run["defaultDatasetId"]).iterate_items():32 print(item)33
34# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start
Google Indexing API Bulk URL Submission API in Python
The Apify API client for Python is the official library that allows you to use Google Indexing API Bulk URL Submission API in Python, providing convenience functions and automatic retries on errors.
Install the apify-client
$pip install apify-client
Other API clients include: