curl -X GET "https://api.kitchen-sink.example.com/v1/status" \
-H "X-API-Key: <X-API-Key>"
const response = await fetch(`https://api.kitchen-sink.example.com/v1/status`, {
method: 'GET',
headers: { 'X-API-Key': '<X-API-Key>' }
});
const data = await response.json();
import requests
response = requests.request(
"GET",
"https://api.kitchen-sink.example.com/v1/status",
headers={ "X-API-Key": "<X-API-Key>" },
)
data = response.json()