Get status

Fetch API status

  • HTTP Method: GET
  • URL: https://example.domain.tld/api/v1/status/
  • Require authentication: No

Response parameters

Parameter Type Description
status str Status of API

Example request (Python)

import requests
import json
from pprint import pprint

url = "https://example.domain.tld/api/v1/status/"
r = requests.get(url)
try:
    pprint(r.json())
except:
    print(r.text)

Example response (JSON)

{'status': 'OK'}