Skip to main content
Monitor Launchpad Trade API status and uptime
Check current API availability, ongoing incidents, and scheduled maintenance windows on the dedicated status page.

Status Page

Real-time uptime monitoring, incident history, and maintenance schedule

What’s Monitored

Automated checks run continuously on the API and Dashboard. When an issue is detected, the status page updates automatically and the team is notified immediately.

Service Status

The API reports one of three statuses through the Health Check endpoint:
StatusMeaning
operationalAll systems functioning normally
degradedService partially affected — requests may be slower or fail intermittently
maintenanceScheduled maintenance in progress — requests may be rejected

Programmatic Monitoring

Use the Health Check endpoint to monitor API status from your own systems. The response includes the current service status, API version, and which server region handled your request.
curl -X GET https://api.launchpad.trade/health \
  -H "X-API-Key: YOUR_API_KEY"
{
  "success": true,
  "data": {
    "status": "operational",
    "version": "0.1.0",
    "region": "ams",
    "timestamp": 1706612400000
  }
}
Poll the health endpoint periodically and alert when status changes from operational to degraded or maintenance.

Reporting an Incident

If you experience issues that are not reflected on the status page:
  1. Confirm the problem is not on your side — check your API key and network connectivity
  2. Call the Health Check endpoint and note the region and version fields
  3. Open a ticket on Discord with the error code and response body
Including the server region and API version from the health response helps the team diagnose issues faster.

What’s Next?

Health Check

Full endpoint documentation for programmatic status checks

Contact Us

Reach the team for support or incident reports