# PING

> Send a ping to the server and get a response if the server is alive.

## Arguments

No arguments

## Response

<ResponseField type="string" required>
  `PONG`
</ResponseField>

<RequestExample>
```ts Example
const response = await redis.ping();
console.log(response); // "PONG"
```
</RequestExample>
