Skip to main content

getHealth

General node health check.

Params

(0)

Result

(getHealthResult)
status
string

"healthy"

Example

Example request to the getHealth method

Request

curl -X POST \
-H 'Content-Type: application/json' \
-d '{
"jsonrpc": "2.0",
"id": 8675309,
"method": "getHealth"
}' \
https://soroban-testnet.stellar.org:443 | jq

Result

{
"jsonrpc": "2.0",
"id": 8675309,
"result": {
"status": "healthy"
}
}