API reference

RPC proxy

The only Solana endpoint the browser needs.

Front ends never talk to a Solana node directly. socials.capital exposes an allow-listed JSON-RPC proxy that fans requests out across a pool of nodes, retries transient failures and broadcasts transactions to every healthy node at once.

POST/v1/rpc

Single or batched JSON-RPC. Allow-listed methods only; subscriptions and heavy scans are rejected.

ts
import { Connection } from "@solana/web3.js"const connection = new Connection(`${API_URL}/v1/rpc`, {  commitment: "confirmed",})

No history

The pool's nodes are validators without ledger history. getTransaction and getSignaturesForAddress are not available through the proxy. Launch verification reads on-chain state instead.

Requests are rate limited per IP. The limit is returned in the 429 body when exceeded.