Get sandbox status
curl --request GET \
--url https://aropay.aro.media/api/v1/sandboxconst options = {method: 'GET'};
fetch('https://aropay.aro.media/api/v1/sandbox', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://aropay.aro.media/api/v1/sandbox"
response = requests.get(url)
print(response.text){
"ok": true,
"service": "aropay-sandbox",
"version": "v1",
"environment": "sandbox",
"timestamp": "2026-08-13T09:00:00.000Z"
}Sandbox
Get sandbox status
Unauthenticated service probe with a flat response shape (no
data envelope). Use it to verify connectivity.
GET
/
sandbox
Get sandbox status
curl --request GET \
--url https://aropay.aro.media/api/v1/sandboxconst options = {method: 'GET'};
fetch('https://aropay.aro.media/api/v1/sandbox', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://aropay.aro.media/api/v1/sandbox"
response = requests.get(url)
print(response.text){
"ok": true,
"service": "aropay-sandbox",
"version": "v1",
"environment": "sandbox",
"timestamp": "2026-08-13T09:00:00.000Z"
}