Spaces:
Runtime error
Runtime error
File size: 278 Bytes
e774b98 |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
import requests
url = "https://api.prodia.com/v1/transform"
headers = {
"accept": "application/json",
"content-type": "application/json",
"X-Prodia-Key": "69e66898-010d-4cd1-9e22-090f73ad007b"
}
response = requests.post(url, headers=headers)
print(response.text) |