Skip to main content

Initia RPC / API Matrix

Expose developer interfaces by use case, not by convenience. Validator internals and signer endpoints are private by default.

Interface classTypical usePublic posture
P2PChain networkingExpose only the protocol-required peer surface.
RPC/APIApplication reads, status checks, integration servicesPrefer private access or managed gateway.
gRPC/WebSocketIndexers, event streams, high-throughput consumersGatewayed and rate-limited where exposed.
MetricsOperations and SLO monitoringPrivate monitoring network only.
Signer/internal controlValidator safetyNever public.

Integration policy

  • Public endpoints must have rate limiting and abuse controls.
  • Internal endpoints must stay private.
  • Indexer workloads should use dedicated API profiles when available.
  • Application teams should consume stable gateway URLs, not validator pod or node addresses.