Get JSON RPC URL
GET
/blockscout/config/json-rpc-url
Responses
200
JSON RPC URL
application/jsonjson_rpc_url
string
REQUIRED
curl -X GET 'https://data-api.b3.fun//blockscout/config/json-rpc-url'
const response = await fetch('https://data-api.b3.fun//blockscout/config/json-rpc-url', {
method: 'GET'
});
const data = await response.json();
console.log(data);
import requests
response = requests.get('https://data-api.b3.fun//blockscout/config/json-rpc-url')
print(response.json())
200
Response
{
"json_rpc_url": "https://core.poa.network"
}
GET
/blockscout/config/json-rpc-url