Get sandbox environment info
curl --request GET \
--url https://api-sandbox.superbank.co/v0/sandbox/info \
--header 'X-Api-Key: <api-key>'import requests
url = "https://api-sandbox.superbank.co/v0/sandbox/info"
headers = {"X-Api-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-Api-Key': '<api-key>'}};
fetch('https://api-sandbox.superbank.co/v0/sandbox/info', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));Sandbox
Get sandbox environment info
GET
/
v0
/
sandbox
/
info
Get sandbox environment info
curl --request GET \
--url https://api-sandbox.superbank.co/v0/sandbox/info \
--header 'X-Api-Key: <api-key>'import requests
url = "https://api-sandbox.superbank.co/v0/sandbox/info"
headers = {"X-Api-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-Api-Key': '<api-key>'}};
fetch('https://api-sandbox.superbank.co/v0/sandbox/info', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));Authorizations
Response
200
Sandbox info retrieved
⌘I