Parameters
Unique identifier for a blockchain network.
Request identifier used to match responses.
JSON-RPC version.
JSON-RPC method name.
Returns
Health status of the Soroban RPC service. Example:
“ok”.curl --request POST \
--url https://api.uniblock.dev/uni/v1/json-rpc?chainId=stellar-soroban \
--header 'content-type: application/json' \
--data '{
"id": 1,
"jsonrpc": "2.0",
"method": "getHealth",
"params": []
}'
{
"jsonrpc": "2.0",
"id": 1,
"result": "ok"
}
Returns the health status of the Soroban RPC service.
“ok”.curl --request POST \
--url https://api.uniblock.dev/uni/v1/json-rpc?chainId=stellar-soroban \
--header 'content-type: application/json' \
--data '{
"id": 1,
"jsonrpc": "2.0",
"method": "getHealth",
"params": []
}'
{
"jsonrpc": "2.0",
"id": 1,
"result": "ok"
}
Was this page helpful?