Test connectivity

Test connectivity to the Rest API

To get started with integrating Brine for your Dapp, we suggest you test your connectivity to our REST APIs.

Endpoint

GET /sapi/v1/health/

Response

{
  "status": "success",
  "message": "Working fine!",
  "payload": ""
}

Error Information

  • If there is an error, the API will return an error with a message containing/detailing the reason.

Sample Error Response:

{
  "status": "error",
  "message": "Invalid symbol.",
  "payload": {}
}

Last updated