Target:
Python
import requests
headers = {
"Content-Type": "application/json",
'X-Luckdata-Api-Key': ''
}
json_data={
"model": "",
"width": "1024",
"height": "1024",
"prompt": "",
"creative": "false"
}
response = requests.post(
'/api/thena/9wsC1QKXEoPh?user-agent=THENA',
headers=headers,
json=json_data,
)
print(response.json())