QuQi API افتح الكونسول
ESC
افتح الكونسول استخدام QuQi
API
Getting started
The QuQi API Authentication
Your account
GET List your websites POST Issue a narrowed key
Channels
GET List channels GET One channel
Posts
POST Plan a post GET List posts GET One post POST Publish a post
Articles
POST Plan an article GET List written articles GET One written article
The calendar
GET The calendar
Pictures
POST Make a picture GET The picture library GET Check a task
Webhooks
POST Add a webhook GET List webhooks DELETE Remove a webhook
Reading finished work
GET Status GET Keywords GET List articles GET One article POST Connect a site POST Disconnect a site
Getting started
Errors
التوثيق / API / Make a picture

Make a picture

A picture from a description, in your brand’s style.

قراءة 3 دقائق Paid plans
POST /api/v1/images
prompt string مطلوب
What the picture should SHOW — the subject and the scene, in plain words.
website_id string مطلوب
Which website. The picture is made in that brand's style.
aspect string اختياري
1:1, 4:5, 9:16, 16:9 or 3:4. Defaults to square.
ابدأ من هنا Describe the subject, not the design. Your brand kit already sets the colours, the type and the logo — and anything you put in quotation marks is treated as text to print *inside* the picture. "A mechanic handing over keys" is a prompt; "blue gradient with the headline 'Best Rates'" fights the brand kit and prints a headline you did not mean.

A picture takes about fifteen seconds, so this answers 202 with a task to check. Each one costs an AI credit, from the same pool videos come from; a website with none left is told before anything starts.

CURL
curl -X POST https://console.quqi.io/api/v1/images \
  -H "Authorization: Bearer quqi_YOUR_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "website_id": "019feda8-0ca6-70d1-b927-697fa6650cda",
    "prompt": "a mechanic handing over keys",
    "aspect": "4:5"
  }'
RESPONSE 202
{
  "success": true,
  "data": {
    "task_id": "01a0…",
    "status": "queued",
    "note": "Making a picture takes about fifteen seconds."
  }
}
هل أجابت هذه الصفحة عن سؤالك؟ نعم ليس تمامًا