Skip to main content

Public RPC Endpoints

Connect to the Side Protocol testnet using our interactive public RPC endpoints. Test connectivity, explore network data, and verify your connection with our user-friendly interface.

Overview

Our public endpoints provide secure and reliable access to the Side Protocol testnet, enabling developers and users to interact with the blockchain through various API interfaces.

Features

  • High Availability: Redundant infrastructure ensures 99.9% uptime
  • Rate Limiting: Fair usage policies to prevent abuse
  • Real-time Data: Live blockchain data and transaction information
  • Developer Friendly: Comprehensive API documentation and examples
  • Secure Access: HTTPS encryption for all endpoints

Endpoint Details

Tendermint RPC

  • URL: https://rpc-testnet-side.blocknth.com
  • Purpose: Core blockchain consensus and network information
  • Methods: Status, block queries, transaction submission

Cosmos REST API

  • URL: https://api-testnet-side.blocknth.com
  • Purpose: Application layer data and account information
  • Methods: Account queries, transaction history, governance data

Interactive Testing

Use our interactive endpoint tester below to verify connectivity and explore the available APIs:

Side Protocol Testnet

Connect to the Side Protocol testnet using our public RPC endpoints. Test connectivity and explore the network with our interactive tools.

Tendermint RPC

curl -s https://rpc-testnet-side.blocknth.com/status

Cosmos REST API

curl -s https://api-testnet-side.blocknth.com/cosmos/base/tendermint/v1beta1/node_info

Integration Examples

JavaScript/TypeScript

// Tendermint RPC Example
const tendermintUrl = 'https://rpc-testnet-side.blocknth.com';

// Get node status
const response = await fetch(`${tendermintUrl}/status`);
const status = await response.json();
console.log('Node Status:', status);

// Cosmos REST API Example
const cosmosUrl = 'https://api-testnet-side.blocknth.com';

// Get node info
const nodeInfo = await fetch(`${cosmosUrl}/cosmos/base/tendermint/v1beta1/node_info`);
const info = await nodeInfo.json();
console.log('Node Info:', info);

cURL Commands

# Test Tendermint RPC
curl -s https://rpc-testnet-side.blocknth.com/status

# Test Cosmos REST API
curl -s https://api-testnet-side.blocknth.com/cosmos/base/tendermint/v1beta1/node_info

Network Information

ComponentValueDescription
Chain IDsidechain-testnet-6Testnet identifier
NetworkSide Protocol TestnetNetwork name
ConsensusdPoSDelegated Proof of Stake
Block Time~6 secondsAverage block time

Rate Limits

warning

These are public endpoints with rate limiting. For production applications, consider running your own node or using dedicated infrastructure.

  • Requests per minute: 60
  • Concurrent connections: 10
  • Timeout: 30 seconds

Support

For technical support or questions about the endpoints:


info

These endpoints are for the Side Protocol testnet. For mainnet endpoints, please refer to the official mainnet documentation.