Public endpoints
The public Autheo Testnet JSON-RPC endpoints do not require authentication:Rate limits
Public endpoints enforce per-IP rate limits to ensure fair access. If you encounter429 Too Many Requests responses, see the Rate limits page for strategies to stay within limits.
Managed node access
For production applications that require guaranteed uptime, dedicated rate limits, or private node access, connect through an approved managed provider (InfStones, Zeeve). These providers offer authenticated endpoints with SLA guarantees. When connecting to a managed node, the provider will supply you with an authenticated endpoint URL in the format:--node flag value in CLI commands or as the JsonRpcProvider URL in ethers.js.
ethers.js example
Security recommendations
- Never expose RPC endpoints directly in client-side JavaScript for production applications
- Route RPC calls through your own backend to hide provider URLs
- Use HTTPS endpoints only — never plain HTTP in production