Skip to main content
GET
/
ready
cURL
curl --request GET \
  --url https://external.vin.gs/api/ready
const options = {method: 'GET'};

fetch('https://external.vin.gs/api/ready', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));
import requests

url = "https://external.vin.gs/api/ready"

response = requests.get(url)

print(response.text)
package main

import (
"fmt"
"net/http"
"io"
)

func main() {

url := "https://external.vin.gs/api/ready"

req, _ := http.NewRequest("GET", url, nil)

res, _ := http.DefaultClient.Do(req)

defer res.Body.Close()
body, _ := io.ReadAll(res.Body)

fmt.Println(string(body))

}
{
  "status": "ok"
}
{
"status": "ok"
}

Response

Readiness check

status
string
required
Example:

"ok"