Link Indexer

Link Indexer

Paste article links from anywhere. We build a public hub page on this site that lists them, then notify Bing and partners about that hub page via free IndexNow.

How it works

You can submit GitHub, GitLab, DEV, Tumblr, Telegraph, Bluesky, and more. IndexNow cannot push those foreign URLs directly — so we create a page on this app that lists them, and IndexNow that page instead.

  1. Log in and paste any article links (or send them via n8n webhook).
  2. We save a hub page at /h/… with your links.
  3. We submit that hub URL to IndexNow (free).
Any links Paste URLs from multiple sites in one batch.
Hub page A crawlable page on link-indexer.ramerlabs.com listing those URLs.
Free IndexNow We notify Bing/Yandex about the hub page only.

n8n webhook instructions

After a publish node (e.g. Neocities) that outputs a public URL, add an HTTP Request node.

  1. Method: POST
  2. URL: https://link-indexer.ramerlabs.com/api/webhook
  3. Header Content-Type = application/json
  4. Header X-API-Key = your webhook API key from Settings
  5. JSON body with the article URL from the previous node
{
  "urls": "{{ $json.neocities_url }}"
}

You can also send many URLs at once (newline-separated). The webhook creates a hub page and IndexNows that hub. API key is in Settings after login.