Skip to main content

Documentation Index

Fetch the complete documentation index at: https://upstash.com/docs/llms.txt

Use this file to discover all available pages before exploring further.

Returns a message back to you. Useful for debugging the connection.

Arguments

message
string
required
A message to send to the server.

Response

The same message you sent.
const response = await redis.echo("hello world");
console.log(response); // "hello world"