QuQi API افتح الكونسول
ESC
افتح الكونسول استخدام QuQi
واجهة المنصة API
Platform API Authentication GET Status GET Keywords GET List articles GET One article POST Connect and disconnect Errors
التوثيق / واجهة المنصة API / Status

Status

One call that tells you whether a site is connected, which brand the key belongs to, and how many articles have been used this month.

قراءة 3 دقائق All plans
GET /api/v1/platform/status

This is the call a plugin makes when its settings screen opens. It answers whether anything is connected, lists the platforms that are, names your brand and its domain, describes the most recent connection, and reports your article usage for the plan.

It takes no parameters. The only thing you send is the key.

Everything sits under data. Two parts of it are worth acting on: the integration block and the plan block. They look like this — the rest of the response is left out here for brevity.

Reading the two blocks

connected and integration describe the website as a whole, not you: connected is true as soon as any platform is connected, and integration describes whichever connection is the most recent. So do not light your own green light from them — you would be reading someone else’s connection as your own. Look for your own platform name in the platforms array instead. integration.id is the id of the key that connection was made with, a 36-character string.

articles_used counts the articles created for the website since the start of the current calendar month. A website with no subscription reports its plan as free.

معلومة مفيدة Treat the plan block as a display value, not as a rule to enforce. The Billing page in the console is where your real allowances and reset date live.
CURL
curl https://console.quqi.io/api/v1/platform/status \
  -H "Authorization: Bearer quqi_YOUR_KEY"
RESPONSE
{
  "success": true,
  "data": {
    "connected": true,
    "platforms": ["wordpress"],
    "integration": {
      "id": "9f1c2a7e-4b30-4c11-9a6d-2f5c8e1b7d04",
      "provider": "wordpress",
      "name": "Corner Bakery",
      "site_url": "https://cornerbakery.example",
      "connected_at": "2026-08-01T09:14:22+00:00"
    },
    "plan": {
      "name": "growth",
      "articles_used": 7,
      "articles_limit": 30,
      "articles_remaining": 23
    }
  }
}
هل أجابت هذه الصفحة عن سؤالك؟ نعم ليس تمامًا