import requests
url = "https://platform.ankra.app/api/v1/clusters/hetzner"
payload = {
"name": "<string>",
"credential_id": "<string>",
"ssh_key_credential_id": "<string>",
"location": "<string>"
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)