Programmatic access to real-time blockchain data with webhooks for live updates.
Use this endpoint to access all node data and subscribe to real-time updates
Built for developers who need reliable data access
Standard HTTP endpoints for easy integration
Get notified instantly when data changes
Access real-time blockchain data streams
Get started with these code examples in your preferred language
Enter a specific node address to customize the code examples below
import { RebarClient } from '@rebarxyz/sdk'
// Initialize the client
const client = new RebarClient('http://rpc.rebar.xyz')
// Get a node's parsed value (recommended)
const value = await client.getValue<number>('rebar1your-node-address')
// Get full node data including metadata
const node = await client.getNode('rebar1your-node-address')
// Watch for real-time value changes
const connection = client.watchRecalcs(['rebar1your-node-address'], () => {
console.log('Node value updated!')
})# Get full node data including metadata
curl -X GET "http://rpc.rebar.xyz:1317/rebar/rebar/node/rebar1your-node-address" \
-H "Content-Type: application/json"
Explore our documentation for advanced features and examples