# Test connectivity

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

### Endpoint <a href="#endpoint" id="endpoint"></a>

```bash
GET /sapi/v1/health/
```

### Response <a href="#response" id="response"></a>

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

### Error Information <a href="#error-information" id="error-information"></a>

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

Sample Error Response:

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

<br>
