# RpcNode > Subscribe to a payment — we webhook paid and run AML at no extra fee. Full-node RPC on the same account. RpcNode (https://rpcnode.dev) is a payments + full-node RPC platform. **The hook:** create a payment (order_id, amount, network). When the customer pays, you get HMAC-signed webhooks. We screen AML at no extra fee. The `paid` webhook carries the stored MistTrack payload (`score`, `risk_level`, `detail_list`, `risk_detail`) — no report URL. Also: unique HTTPS JSON-RPC endpoints per network/environment, credits + RPS by plan. Full node — not archive. Same methods as ethers, web3.js, TronWeb, curl. ## Start here - Home: https://rpcnode.dev/ - Managed RPC: https://rpcnode.dev/rpc - Payments: https://rpcnode.dev/payments - Pricing (Free plan, no card): https://rpcnode.dev/pricing - Docs: https://docs.rpcnode.dev/getting-started - Public API: https://docs.rpcnode.dev/public-api/overview - OpenAPI: https://rpcnode.dev/openapi.yaml - Full agent brief: https://rpcnode.dev/llms-full.txt - Docs agent brief: https://docs.rpcnode.dev/llms.txt - Compare vs Alchemy / QuickNode / Infura: https://rpcnode.dev/compare - Live tip status: https://rpcnode.dev/status - Toolkit (self-host, free): https://toolkit.rpcnode.dev/ - Source: https://github.com/rpcnode/toolkit - Contact: admin@rpcnode.dev ## Free plan (as of 2026-08) - Price: $0 / month — no card - Credits: 15M / month (shared by JSON-RPC and webhook deliveries) - RPS: 15 requests/second per endpoint (fixed 1-second window) - Address Watch / payment slots: not included on Free (paid tiers start at Starter $19/mo) - Higher tiers: Starter $19 · Build $36 · Grow $99 · Scale $219 · Business $449 · Custom ## JSON-RPC URL shape: ``` https://{network}-{environment}.rpcnode.dev/{endpoint-uuid} ``` Example (placeholder UUID — replace with yours from the dashboard): ``` https://ethereum-mainnet.rpcnode.dev/7c9e6679-7425-40de-944b-e07fc1f90ae7 ``` ```bash curl https://ethereum-mainnet.rpcnode.dev/YOUR-ENDPOINT-UUID \ -H 'content-type: application/json' \ -d '{"jsonrpc":"2.0","id":1,"method":"eth_blockNumber","params":[]}' ``` Create an endpoint: sign up at https://rpcnode.dev/register → cabinet → Endpoints. There is no public unauthenticated demo RPC; /status probes live tips without an API key. When RPS is exceeded: HTTP 429, JSON-RPC error `-32005`. Rejected RPS calls do not consume credits. ## Live managed networks (launch set) Ethereum, Solana, Base, Hyperliquid, Bitcoin, BNB Smart Chain, Polygon PoS, Arbitrum One, OP Mainnet, TRON — mainnet plus documented testnets. More chains appear on https://rpcnode.dev/rpc as they go live. Per-network pages: https://rpcnode.dev/rpc/{slug} (ethereum, solana, base, bitcoin, tron, …) Method docs: https://docs.rpcnode.dev/{slug} ## Payments (the product hook) - Subscribe: create a payment order (cabinet or Public API) - Webhooks: `product=payments`, `type=payment_order`, events `seen | aml_check | paid | failed | underpaid | expired` - **AML included** — no extra screening fee. After confirm we send `aml_check`, then `paid` with: ```json "aml": { "provider": "misttrack", "score": 0, "risk_level": "Low", "hacking_event": "", "detail_list": [], "risk_detail": [], "address_label": "", "checked_at": "2026-08-16T10:00:00+00:00" } ``` - Host: https://api.rpcnode.dev (paths start at /v1/… — no /api prefix) - Auth: `X-Api-Key` + `X-Timestamp` + `X-Signature` (HMAC-SHA256). See https://docs.rpcnode.dev/public-api/authentication - Address Watch: subscribe to on-chain address activity (`payment` / `payout` / `block`) - Payment slots start on paid plans (Starter+). AML is included on those payments — not a second SKU. ## Toolkit Free self-hosted panel to install full nodes on your Linux servers (agent → Add server → Add node). https://toolkit.rpcnode.dev/ ## Optional crawlers Indexing and training on public marketing + docs pages is allowed. Do not scrape `/app`, `/login`, `/register`, or `/auth`.