Favicon

You are here: Home > API Reference > Platform > General > Return hi

GET /

Return Hi

GET
https://api.applivery.iohttps://upload.applivery.io/v1/
curl -X GET "https://api.applivery.iohttps://upload.applivery.io/v1/"
const response = await fetch("https://api.applivery.iohttps://upload.applivery.io/v1/", {
  method: "GET",
});

const data = await response.json();
import requests

response = requests.get(
    "https://api.applivery.iohttps://upload.applivery.io/v1/",
)

data = response.json()

Request

Responses

200 Response application/json
status boolean required
data string required
{
    "status": true,
    "data": "hi"
}