Skip to main content
Check Launchpad Trade API health status and server region
GET/health
Verify that the API is operational and identify which server region is handling your requests. This is the only GET endpoint — no request body is needed.

Quick Start

curl -X GET https://api.launchpad.trade/health \
  -H "X-API-Key: YOUR_API_KEY"

Response

{
  "success": true,
  "data": {
    "status": "operational",
    "version": "0.1.0",
    "region": "ams",
    "timestamp": 1706612400000
  }
}
FieldTypeDescription
statusstringCurrent service status. See Status Values below
versionstringAPI version (SemVer format)
regionstringServer region handling the request. See Regions below
timestampnumberServer timestamp in milliseconds (Unix epoch)

Status Values

StatusDescription
operationalAll systems functioning normally
degradedService partially affected — requests may be slower or fail intermittently
maintenanceScheduled maintenance in progress — requests may be rejected
Monitor the status page for real-time updates and incident history.

Regions

The API runs across multiple regions. The response tells you which server handled your request.
CodeLocation
amsAmsterdam
fraFrankfurt
ewrNew York
laxLos Angeles
nrtTokyo
sinSingapore
Your region matters when using Initialize Wallets. Initialization is region-specific — if your region changes, re-initialize your wallets.

Use Cases

ScenarioWhat to check
Pre-flight checkConfirm status is operational before sending transactions
Uptime monitoringPoll periodically and alert when status changes
Region verificationCheck region to ensure requests hit the expected server
Debug & supportInclude version and region when reporting issues

Errors

{
  "success": false,
  "error": {
    "code": "UNAUTHORIZED",
    "message": "Invalid or missing API key"
  }
}
CodeMessageCause
UNAUTHORIZEDInvalid or missing API keyAPI key is missing or invalid
SERVICE_UNAVAILABLEService temporarily unavailableThe API is down or unreachable

Notes

  • This is the only GET endpoint — no request body is needed
  • No fees are charged for health check requests

What’s Next?

Token Info

List token accounts and check balances

Initialize Wallets

Prepare wallets for optimal trading speed

Best Practices

Tips for reliable API integration

Check Balance

Verify SOL and token balances