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

One article

A single article with its full body, excerpt, cover image and meta fields — the call you make when you are about to render it.

قراءة 3 دقائق All plans
GET /api/v1/platform/articles/{id}

This returns the same row the list gives you, plus everything you need to put the article on a page: the full content, the excerpt, the cover image, the meta title and description, and the address it was published at if it has been published.

id path مطلوب
The article’s id, taken from the list. It is a 36-character string, not a number — store it as text. Note that the id on a keywords row is the calendar item’s id, not the article’s, and will not resolve here.

Trimmed below — content is the whole article, so it is much longer in practice.

معلومة مفيدة Asking for an article that belongs to another website returns 404 with Article not found. — the same answer as an article that does not exist, so a wrong key never tells you what else is out there.
CURL
curl https://console.quqi.io/api/v1/platform/articles/9f1c2a7e-4b30-4c11-9a6d-2f5c8e1b7d04 \
  -H "Authorization: Bearer quqi_YOUR_KEY"
RESPONSE
{
  "success": true,
  "data": {
    "id": "9f1c2a7e-4b30-4c11-9a6d-2f5c8e1b7d04",
    "title": "How to keep a sourdough starter alive",
    "slug": "how-to-keep-a-sourdough-starter-alive",
    "status": "published",
    "keyword": "sourdough starter care",
    "word_count": 1480,
    "seo_score": 86,
    "created_at": "2026-08-14T09:02:10+00:00",
    "published_at": "2026-08-14T09:06:44+00:00",
    "excerpt": "A starter only needs three things, and a schedule you can keep.",
    "content": "<h2>Feeding schedule</h2><p>...</p>",
    "cover_image": "https://console.quqi.io/storage/covers/sourdough-starter.jpg",
    "meta_title": "How to keep a sourdough starter alive",
    "meta_description": "A simple feeding schedule for a starter that lives on a home worktop.",
    "external_url": "https://cornerbakery.example/blog/sourdough-starter-care"
  }
}
هل أجابت هذه الصفحة عن سؤالك؟ نعم ليس تمامًا