Quick Start
Make your first request
To make your first request, send a request to the hello endpoint. This will send back a response, which is nice.
Get a welcome message
GET https://sh.phyr.in/sayhello
{
"success": true,
"message": "Hello World",
"data": null
}Take a look at how you might call this method using our official libraries, or via curl:
curl http://localhost:3000/sayhello const response = await fetch("https://sh.phyr.in/hello");Last updated