GET /api/scheduling/reserved/{chainId}/{account}/{slot}
GET
/api/scheduling/reserved/{chainId}/{account}/{slot}get the reserved balance for future executions
Parameters
Path Parameters
chainId*
Typestring
Requiredaccount*
Typestring
Requiredslot*
Typestring
RequiredResponses
GET
/api/scheduling/reserved/{chainId}/{account}/{slot}Samples
cURL
curl -X GET http://localhost/api/scheduling/reserved/{chainId}/{account}/{slot}
JavaScript
fetch("http://localhost/api/scheduling/reserved/{chainId}/{account}/{slot}")
.then(response => response.json())
.then(data => console.log(data));
PHP
file_get_contents("http://localhost/api/scheduling/reserved/{chainId}/{account}/{slot}");
Python
import requests
response = requests.get("http://localhost/api/scheduling/reserved/{chainId}/{account}/{slot}")
print(response.json())