Authentication
Last updated
Last updated
{
user: "auth0|1234567890",
email: "[email protected]",
messsage: "API key is valid."
}import requests
API_KEY = "" # Replace with your api key
URL = "https://app.biodock.ai/api/external/check"
headers = {"X-API-KEY": API_KEY, "Content-Type": "application/json"}
response = requests.get(URL, headers=headers)
print(response.text)