Endpoints
/status

API Status

The /status endpoint lets you verify if the service is live with a simple ping.

https://api.hypersonic.exchange/v1/status

Request type: GET

Parameters

  • No parameters required.

Responses

  • 200 Successful request.
  • 5xx Service unavailable.
{
  "success": true,
  "status": "live",
  "timestamp": "2000-01-01T00:00:00.000Z"
}

Response Fields

  • success: Boolean indicating if the request was successful.
  • status: Current status of the service.
  • timestamp: UTC timestamp of when the status was checked.

Try it yourself

To ping the API using curl, you can use the following command:

curl https://api.hypersonic.exchange/v1/status

This will send a GET request to the status endpoint and return the response.