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
import requests

url = 'https://api.oxapay.com/v1/common/monitor'

response = requests.get(url)
result = response.json()
print(result)
200

Successful operation

{
  "data": {
    "status": true
  },
  "message": "Operation completed successfully!",
  "error": {},
  "status": 200,
  "version": "1.0.0"
}

Last updated