System Status
This endpoint allows you to check the current status of the OxaPay API, ensuring it is functioning correctly.
get
Responses
200
Successful operation
application/json
get
/common/monitor200
Successful operation
Last updated
This endpoint allows you to check the current status of the OxaPay API, ensuring it is functioning correctly.
Successful operation
Successful operation
Last updated
import requests
url = 'https://api.oxapay.com/v1/common/monitor'
response = requests.get(url)
result = response.json()
print(result){
"data": {
"status": true
},
"message": "Operation completed successfully!",
"error": {},
"status": 200,
"version": "1.0.0"
}