Fashion AI

ÜCRETSİZ PREMIUM
Taraf AnkaTech | Güncelleyen 2달 전 | Artificial Intelligence/Machine Learning
Popülerlik

6 / 10

Gecikme

11,382ms

Hizmet Düzeyi

100%

Health Check

N/A

Tüm Eğitimlere Dön (2)

Generate Image Syncronously

Python code example

import requests

url = “https://fashion-ai.p.rapidapi.com/images

payload = { “prompt”: “a close up of a cap weared by a man with stubble beard” }
headers = {
“content-type”: “application/json”,
“X-RapidAPI-Processor”: “sync”,
“X-RapidAPI-Key”: “0bd13d9e5dmshacde2895fef92cap1313f4jsn42ed0909bed9”,
“X-RapidAPI-Host”: “fashion-ai.p.rapidapi.com
}

response = requests.post(url, json=payload, headers=headers)

print(response.json())