NEW AI Studio is now available Try it now
Directories

PublicNode RPC Endpoints Scraper

A directory listing of RPC endpoints for 102 blockchains, including chain names, node status, and tags. Powered by spider-browser .

Get Started Documentation
publicnode.com target
99.9% success rate
~4ms latency
Quick Start

Extract data in minutes

publicnode-com-scraper.ts
import { SpiderBrowser } from "spider-browser";

const spider = new SpiderBrowser({
  apiKey: process.env.SPIDER_API_KEY!,
});

await spider.connect();
const page = spider.page!;
await page.goto("https://www.publicnode.com");

const data = await page.extractFields({
  chain_name: "div.styled__Header-sc-1ffc21h-1",
  chain_stats: "div.styled__ChainStats-sc-1ffc21h-6",
  footer: "div.Footer__Root-sc-198rwdq-7",
  image: "div.Iconstyles__Container-sc-e401d4-0",
  links: "a[href^="/"], a[href^="/author/"]",
  node_status: "div.styled__NodeStatus-sc-1ffc21h-4",
});

console.log(data);
await spider.close();
✓ ready to run | spider-browser | TypeScript
Fetch API

Structured data endpoint

Extract structured JSON from publicnode.com with a single POST request. AI-configured selectors, cached for fast repeat calls.

POST /fetch/publicnode.com/
Chain NameChain StatsFooterImageLinksNode Status
curl
curl -X POST https://api.spider.cloud/fetch/publicnode.com/ \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"return_format": "json"}'
Python
import requests

resp = requests.post(
    "https://api.spider.cloud/fetch/publicnode.com/",
    headers={
        "Authorization": "Bearer YOUR_API_KEY",
        "Content-Type": "application/json",
    },
    json={"return_format": "json"},
)
print(resp.json())
Node.js
const resp = await fetch("https://api.spider.cloud/fetch/publicnode.com/", {
  method: "POST",
  headers: {
    "Authorization": "Bearer YOUR_API_KEY",
    "Content-Type": "application/json",
  },
  body: JSON.stringify({ return_format: "json" }),
});
const data = await resp.json();
console.log(data);
Extraction

Data you can extract

Chain NameChain StatsFooterImageLinksNode StatusPer SecondRequests In 24hTagsTags List
Pricing

Real-time price data

Monitor product prices, discounts, and availability changes on publicnode.com.

Anti-Bot

Protection bypass

Automated CAPTCHA solving and fingerprint rotation to access product pages reliably.

Scale

Bulk extraction

Process thousands of product pages concurrently with smart retry and browser switching.

Related

More Directories scrapers

Start scraping publicnode.com

Get your API key and start extracting data in minutes.