Connection Details
The JSON-RPC API is available via HTTP POST requests to the node’s RPC endpoint.Default Endpoint
Authentication
The JSON-RPC API does not require authentication by default. All endpoints are publicly accessible on the configured host and port.Request Format
All JSON-RPC requests follow the standard format:Protocol version (always “2.0”)
The RPC method name to call
Method-specific parameters (can be empty)
Request identifier for matching responses
Response Format
Success Response
Protocol version (“2.0”)
Method-specific response data
Request identifier matching the request
Error Response
Error information
Standard Error Codes
| Code | Message | Description |
|---|---|---|
| -32700 | Parse error | Invalid JSON was received |
| -32600 | Invalid Request | The JSON sent is not a valid Request object |
| -32601 | Method not found | The method does not exist |
| -32602 | Invalid params | Invalid method parameter(s) |
| -32603 | Internal error | Internal JSON-RPC error |
Using Popular Libraries
ethers.js
web3.js
curl
Chain Information
Chain ID
1281453634 (0x4c616e42)Network Name
Core Lane
API Categories
Core Lane’s JSON-RPC API is organized into several categories:Ethereum-Compatible Methods
Standard Ethereum RPC methods for accounts, transactions, blocks, and gas
Core Lane Methods
Custom RPC methods specific to Core Lane features
REST Endpoints
In addition to JSON-RPC, Core Lane provides several REST endpoints for raw data access:| Endpoint | Method | Description |
|---|---|---|
/health | GET | Health check endpoint |
/get_raw_block/:block_number | GET | Get raw block data |
/get_raw_block_delta/:block_number | GET | Get block state delta |
/get_latest_block | GET | Get latest block information |
/kv/:key | GET | Get key-value store data |
/bitcoin/wallet/balance | GET | Get Bitcoin wallet balance |
/do_poll | POST | Trigger on-demand block scan (when enabled) |
Rate Limiting
There is no built-in rate limiting. Consider implementing rate limiting at the network or application level for production deployments.Next Steps
Ethereum-Compatible Methods
Explore standard Ethereum RPC methods
Core Lane Methods
Discover Core Lane-specific functionality