<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Faisal Hossain</title>
    <description>The latest articles on DEV Community by Faisal Hossain (@faisalhbd).</description>
    <link>https://dev.to/faisalhbd</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3888076%2F0742e334-483c-4b76-8956-aa3c095213b8.jpg</url>
      <title>DEV Community: Faisal Hossain</title>
      <link>https://dev.to/faisalhbd</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/faisalhbd"/>
    <language>en</language>
    <item>
      <title>I Built a Free Browser-Based Google Indexing API Tool — Submit 200 URLs Instantly (No Backend, No Server)</title>
      <dc:creator>Faisal Hossain</dc:creator>
      <pubDate>Mon, 20 Apr 2026 02:28:51 +0000</pubDate>
      <link>https://dev.to/faisalhbd/i-built-a-free-browser-based-google-indexing-api-tool-submit-200-urls-instantly-no-backend-no-2k2g</link>
      <guid>https://dev.to/faisalhbd/i-built-a-free-browser-based-google-indexing-api-tool-submit-200-urls-instantly-no-backend-no-2k2g</guid>
      <description>&lt;h1&gt;
  
  
  I Built a Free Google Indexing API Tool — Submit 200 URLs Instantly (No Backend Needed)
&lt;/h1&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fdqecln9rjiqlhgf0bdq5.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fdqecln9rjiqlhgf0bdq5.png" alt=" " width="700" height="1522"&gt;&lt;/a&gt;&lt;br&gt;
&lt;strong&gt;Tags:&lt;/strong&gt; &lt;code&gt;seo&lt;/code&gt;, &lt;code&gt;webdev&lt;/code&gt;, &lt;code&gt;javascript&lt;/code&gt;, &lt;code&gt;productivity&lt;/code&gt;&lt;br&gt;
&lt;strong&gt;Cover image:&lt;/strong&gt; &lt;em&gt;(Upload a screenshot of the tool)&lt;/em&gt;&lt;/p&gt;



&lt;p&gt;Tired of waiting weeks for Google to crawl your new pages? I was too. So I built &lt;strong&gt;Instant Indexer&lt;/strong&gt; — a completely free, browser-based tool that uses the official Google Indexing API to submit URLs to Google &lt;em&gt;instantly&lt;/em&gt;.&lt;/p&gt;

&lt;p&gt;No backend. No server. No registration. Just upload your JSON key and submit.&lt;/p&gt;

&lt;p&gt;🔗 &lt;strong&gt;Live tool:&lt;/strong&gt; &lt;a href="https://faisalhbd.github.io/instant-indexer/" rel="noopener noreferrer"&gt;faisalhbd.github.io/instant-indexer&lt;/a&gt;&lt;/p&gt;


&lt;h2&gt;
  
  
  The Problem
&lt;/h2&gt;

&lt;p&gt;You publish a blog post. You go to Google Search Console and hit "Request Indexing." Then you wait. And wait. Sometimes it takes &lt;strong&gt;days. Sometimes weeks.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;The Google Indexing API solves this — it lets you push URLs directly into Google's crawl queue programmatically. But most tutorials require a Python script, a Node.js server, or some backend setup that's annoying to run every time.&lt;/p&gt;

&lt;p&gt;I wanted something I could just open in a browser and use immediately.&lt;/p&gt;


&lt;h2&gt;
  
  
  What is Instant Indexer?
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;Instant Indexer&lt;/strong&gt; is a pure client-side HTML/JavaScript dashboard that:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;✅ Submits URLs directly to Google via the official Indexing API v3&lt;/li&gt;
&lt;li&gt;✅ Supports &lt;strong&gt;bulk URL submission&lt;/strong&gt; (paste hundreds at once)&lt;/li&gt;
&lt;li&gt;✅ Handles &lt;strong&gt;multiple JSON service account keys&lt;/strong&gt; with auto-rotation&lt;/li&gt;
&lt;li&gt;✅ Tracks &lt;strong&gt;daily quota&lt;/strong&gt; per key (200 URLs/key/day)&lt;/li&gt;
&lt;li&gt;✅ Shows &lt;strong&gt;live submission log&lt;/strong&gt; with success/fail status&lt;/li&gt;
&lt;li&gt;✅ Saves &lt;strong&gt;submission history&lt;/strong&gt; in localStorage&lt;/li&gt;
&lt;li&gt;✅ Works entirely in your browser — no data sent to any third-party server&lt;/li&gt;
&lt;/ul&gt;


&lt;h2&gt;
  
  
  How It Works (Technical Overview)
&lt;/h2&gt;

&lt;p&gt;The entire auth flow runs client-side using the &lt;strong&gt;Web Crypto API&lt;/strong&gt;:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;You upload your Google Cloud service account &lt;code&gt;.json&lt;/code&gt; key file&lt;/li&gt;
&lt;li&gt;The tool signs a JWT using &lt;code&gt;crypto.subtle.sign()&lt;/code&gt; with RS256&lt;/li&gt;
&lt;li&gt;Exchanges the JWT for an OAuth 2.0 access token via Google's token endpoint&lt;/li&gt;
&lt;li&gt;Submits each URL to &lt;code&gt;https://indexing.googleapis.com/v3/urlNotifications:publish&lt;/code&gt;
&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;No Node.js. No Python. No backend at all. Here's the core of the JWT signing:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight javascript"&gt;&lt;code&gt;&lt;span class="kd"&gt;const&lt;/span&gt; &lt;span class="nx"&gt;cryptoKey&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="k"&gt;await&lt;/span&gt; &lt;span class="nx"&gt;crypto&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;subtle&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;importKey&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;
  &lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="s1"&gt;pkcs8&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="nx"&gt;binaryDer&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;buffer&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;
  &lt;span class="p"&gt;{&lt;/span&gt; &lt;span class="na"&gt;name&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="s1"&gt;RSASSA-PKCS1-v1_5&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="na"&gt;hash&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="s1"&gt;SHA-256&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt; &lt;span class="p"&gt;},&lt;/span&gt;
  &lt;span class="kc"&gt;false&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="p"&gt;[&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="s1"&gt;sign&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="p"&gt;]&lt;/span&gt;
&lt;span class="p"&gt;);&lt;/span&gt;

&lt;span class="kd"&gt;const&lt;/span&gt; &lt;span class="nx"&gt;sig&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="k"&gt;await&lt;/span&gt; &lt;span class="nx"&gt;crypto&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;subtle&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;sign&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;
  &lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="s1"&gt;RSASSA-PKCS1-v1_5&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="nx"&gt;cryptoKey&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="nx"&gt;encoder&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;encode&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nx"&gt;unsigned&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;
&lt;span class="p"&gt;);&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Everything runs locally. Your private key never leaves your browser.&lt;/p&gt;




&lt;h2&gt;
  
  
  How to Use It (Step by Step)
&lt;/h2&gt;

&lt;h3&gt;
  
  
  Step 1 — Create a Google Cloud Service Account
&lt;/h3&gt;

&lt;ol&gt;
&lt;li&gt;Go to &lt;a href="https://console.cloud.google.com/" rel="noopener noreferrer"&gt;console.cloud.google.com&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;Create a new project&lt;/li&gt;
&lt;li&gt;Enable the &lt;strong&gt;Web Search Indexing API&lt;/strong&gt;
&lt;/li&gt;
&lt;li&gt;Go to &lt;strong&gt;Credentials → Create Credentials → Service Account&lt;/strong&gt;
&lt;/li&gt;
&lt;li&gt;Under the service account → &lt;strong&gt;Keys → Add Key → JSON&lt;/strong&gt; → Download the file&lt;/li&gt;
&lt;/ol&gt;

&lt;h3&gt;
  
  
  Step 2 — Add the Service Account as Owner in Search Console
&lt;/h3&gt;

&lt;p&gt;This is the step most people miss. Without this, the API will reject all requests.&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Open your downloaded &lt;code&gt;.json&lt;/code&gt; file and copy the &lt;code&gt;client_email&lt;/code&gt; value&lt;/li&gt;
&lt;li&gt;Go to &lt;a href="https://search.google.com/search-console" rel="noopener noreferrer"&gt;Google Search Console&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;Select your property → &lt;strong&gt;Settings → Users and Permissions → Add User&lt;/strong&gt;
&lt;/li&gt;
&lt;li&gt;Paste the &lt;code&gt;client_email&lt;/code&gt; → set permission to &lt;strong&gt;Owner&lt;/strong&gt; → Save&lt;/li&gt;
&lt;/ol&gt;

&lt;h3&gt;
  
  
  Step 3 — Upload the JSON &amp;amp; Submit URLs
&lt;/h3&gt;

&lt;ol&gt;
&lt;li&gt;Open &lt;a href="https://faisalhbd.github.io/instant-indexer/" rel="noopener noreferrer"&gt;Instant Indexer&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;Click &lt;strong&gt;"Upload JSON key"&lt;/strong&gt; and select your downloaded file&lt;/li&gt;
&lt;li&gt;Paste your URLs (one per line) in the URL box&lt;/li&gt;
&lt;li&gt;Select &lt;strong&gt;URL_UPDATED&lt;/strong&gt; (to index) or &lt;strong&gt;URL_DELETED&lt;/strong&gt; (to remove)&lt;/li&gt;
&lt;li&gt;Hit &lt;strong&gt;⚡ Submit All URLs&lt;/strong&gt;
&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;That's it. You'll see a live log of each submission with 200 OK or error status.&lt;/p&gt;




&lt;h2&gt;
  
  
  Key Features Explained
&lt;/h2&gt;

&lt;h3&gt;
  
  
  Multi-Key Auto Rotation
&lt;/h3&gt;

&lt;p&gt;Each service account gives you &lt;strong&gt;200 URL submissions per day&lt;/strong&gt;. Add up to &lt;strong&gt;10 JSON keys&lt;/strong&gt; and enable Auto Rotation — the tool automatically switches to the key with the most remaining quota.&lt;/p&gt;

&lt;h3&gt;
  
  
  Quota Tracking with 24-Hour Reset
&lt;/h3&gt;

&lt;p&gt;The tool tracks how many URLs each key has submitted today. When a key hits its limit, it shows a 🔴 &lt;strong&gt;red mark&lt;/strong&gt;. After 24 hours, it automatically turns 🟢 &lt;strong&gt;green&lt;/strong&gt; and resets — stored in localStorage so it persists across page reloads.&lt;/p&gt;

&lt;h3&gt;
  
  
  No Backend Required
&lt;/h3&gt;

&lt;p&gt;The entire tool is a single &lt;code&gt;index.html&lt;/code&gt; file. Host it anywhere — GitHub Pages, Netlify, your local machine. The Google API calls are made directly from your browser using standard &lt;code&gt;fetch()&lt;/code&gt;.&lt;/p&gt;




&lt;h2&gt;
  
  
  Who Is This For?
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Bloggers&lt;/strong&gt; who publish frequently and want new posts indexed the same day&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;SEO professionals&lt;/strong&gt; managing multiple client sites&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Developers&lt;/strong&gt; who just launched a new project and want it crawled immediately&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Anyone&lt;/strong&gt; tired of waiting for Google's natural crawl cycle&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  Daily Quota: What You Need to Know
&lt;/h2&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Keys Added&lt;/th&gt;
&lt;th&gt;Max URLs/Day&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;1 key&lt;/td&gt;
&lt;td&gt;200 URLs&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;5 keys&lt;/td&gt;
&lt;td&gt;1,000 URLs&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;10 keys&lt;/td&gt;
&lt;td&gt;2,000 URLs&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;The API quota is per service account, not per project. You can create &lt;strong&gt;multiple Google Cloud projects&lt;/strong&gt;, each with its own service account and its own 200/day quota.&lt;/p&gt;




&lt;h2&gt;
  
  
  One Important Note
&lt;/h2&gt;

&lt;p&gt;The Google Indexing API was officially designed for &lt;strong&gt;JobPosting and BroadcastEvent&lt;/strong&gt; structured data pages. However, in practice it works for &lt;strong&gt;any URL&lt;/strong&gt; — and many SEOs use it this way. Google hasn't restricted it.&lt;/p&gt;

&lt;p&gt;That said: submitting a URL via the API doesn't &lt;em&gt;guarantee&lt;/em&gt; indexing. It tells Google to &lt;em&gt;crawl&lt;/em&gt; it. If the page has thin content, no backlinks, or technical issues, Google may still choose not to index it.&lt;/p&gt;




&lt;h2&gt;
  
  
  Try It
&lt;/h2&gt;

&lt;p&gt;🔗 &lt;a href="https://faisalhbd.github.io/instant-indexer/" rel="noopener noreferrer"&gt;faisalhbd.github.io/instant-indexer&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;The tool is completely free and open source. If you find it useful, share it — and drop a comment below if you have any questions or feature suggestions!&lt;/p&gt;




&lt;p&gt;&lt;em&gt;Built with vanilla HTML, CSS, and JavaScript. Uses the Web Crypto API for client-side JWT signing. No frameworks, no dependencies, no backend.&lt;/em&gt;&lt;/p&gt;

</description>
      <category>seo</category>
      <category>webdev</category>
      <category>javascript</category>
      <category>productivity</category>
    </item>
  </channel>
</rss>
