Skip to content

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
Required
account*
Typestring
Required
slot*
Typestring
Required

Responses

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())
Powered by VitePress OpenAPI