ASAPP provides a simple endpoint to check if our API services are operating normally. You can use this to verify the platform’s availability or implement automated health monitoring.

Checking API Health

Send a GET request to the health check endpoint:

curl https://api.sandbox.asapp.com/v1/health \
  -H "asapp-api-id: YOUR_API_ID" \
  -H "asapp-api-secret: YOUR_API_SECRET"

A successful response will return:

{
  "healthCheck": "SUCCESS"
}

The status will be either SUCCESS when operating normally or FAILED if there are service disruptions.

Was this page helpful?