<a id="ksqldb-rest-api-info-endpoint"></a>

# Get the Status of a ksqlDB Server on Confluent Platform

The `/info` resource returns the status of a ksqlDB server, useful
for health checks and troubleshooting. Use the `curl` command to
query the `/info` endpoint:

```bash
curl --http1.1 -sX GET "http://localhost:8088/info" | jq '.'
```

Your output should resemble:

```json
{
  "KsqlServerInfo": {
    "version": "0.29.0",
    "kafkaClusterId": "j3tOi6E_RtO_TMH3gBmK7A",
    "ksqlServiceId": "default_"
  }
}
```

You can also check the health of your ksqlDB server by using the
`/healthcheck` resource:

```bash
curl --http1.1 -sX GET "http://localhost:8088/healthcheck" | jq '.'
```

Your output should resemble:

```json
{
  "isHealthy": true,
  "details": {
    "metastore": {
      "isHealthy": true
    },
    "kafka": {
      "isHealthy": true
    }
  }
}
```
