curl --request GET \
--url 'https://api.sprinter.tech/health'
import requests
response = requests.get("https://api.sprinter.tech/health")
print(response.json())
const response = await fetch(
"https://api.sprinter.tech/health"
);
const data = await response.json();
console.log(data);
package main
import (
"fmt"
"io"
"net/http"
)
func main() {
resp, _ := http.Get("https://api.sprinter.tech/health")
defer resp.Body.Close()
body, _ := io.ReadAll(resp.Body)
fmt.Println(string(body))
}
{
"status": "ok"
}
Liquidity Info
Health Check
health check
GET
/
health
curl --request GET \
--url 'https://api.sprinter.tech/health'
import requests
response = requests.get("https://api.sprinter.tech/health")
print(response.json())
const response = await fetch(
"https://api.sprinter.tech/health"
);
const data = await response.json();
console.log(data);
package main
import (
"fmt"
"io"
"net/http"
)
func main() {
resp, _ := http.Get("https://api.sprinter.tech/health")
defer resp.Body.Close()
body, _ := io.ReadAll(resp.Body)
fmt.Println(string(body))
}
{
"status": "ok"
}
curl --request GET \
--url 'https://api.sprinter.tech/health'
import requests
response = requests.get("https://api.sprinter.tech/health")
print(response.json())
const response = await fetch(
"https://api.sprinter.tech/health"
);
const data = await response.json();
console.log(data);
package main
import (
"fmt"
"io"
"net/http"
)
func main() {
resp, _ := http.Get("https://api.sprinter.tech/health")
defer resp.Body.Close()
body, _ := io.ReadAll(resp.Body)
fmt.Println(string(body))
}
{
"status": "ok"
}
Authorizations
Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.
Response
Service is healthy
The response is of type string.
Example:
"✅"