Public RPC Endpoints
Connect to the Story Aeneid Testnet using our interactive public RPC endpoints. Test connectivity, explore network data, and verify your connection with our user-friendly interface.
Overview
The Story Aeneid Testnet provides three types of endpoints:
- EVM RPC: https://evmrpc-aeneid-story.blocknth.com
- Tendermint RPC: https://rpc-aeneid-story.blocknth.com
- Cosmos REST API: https://api-aeneid-story.blocknth.com
Usage
- Select an endpoint type from the sections below
- Modify the URL if needed (defaults are pre-configured)
- Click "Test Connection" to verify connectivity
- View results in the formatted response area
- Copy URLs using the "Copy URL" button for use in your applications
Story Aeneid Testnet
Connect to the Story Aeneid Testnet using our public RPC endpoints. Test connectivity and explore the network with our interactive tools.
EVM RPC
curl -X POST \ -H "Content-Type: application/json" \ --data '{ "jsonrpc": "2.0", "id": 1, "method": "eth_blockNumber", "params": [] }' \ https://evmrpc-aeneid-story.blocknth.com
Tendermint RPC
curl -s https://rpc-aeneid-story.blocknth.com/status
Troubleshooting
Common Issues
- Connection Timeout: Check your internet connection and firewall settings
- CORS Errors: Use appropriate headers for cross-origin requests
- Rate Limiting: Implement proper request throttling in your applications
- Invalid JSON: Ensure your request payload follows JSON-RPC 2.0 specification
Best Practices
- Error Handling: Always implement proper error handling for network requests
- Request Throttling: Avoid overwhelming the endpoints with too many requests
- Caching: Cache responses when appropriate to reduce load
- Monitoring: Monitor your application's connection health regularly
Support
If you encounter issues with the public endpoints:
- Check the Story Foundation documentation
- Verify your request format and parameters
- Test with the interactive interface above
- Check network connectivity and firewall settings
tip
For production applications, consider running your own node or using a dedicated RPC provider for better reliability and performance.
info
These endpoints are provided for testing and development purposes. For mainnet deployment, please refer to the official mainnet documentation.