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 / The calendar

The calendar

Everything happening on one website — articles and posts together, in date order.

قراءة 2 دقائق All plans
GET /api/v1/calendar

The first question most automations ask is "what is happening this week". Articles and posts are different kinds of work, but that is one question, so this answers it in one list.

website_id string مطلوب
Which of your websites.
from string اختياري
First day. Defaults to today.
to string اختياري
Last day. Defaults to thirty days after from.
kind string اختياري
articles, social, or all. Defaults to all.
معلومة مفيدة An article entry reports the article's status once one exists — published rather than planned — because that is what you mean when you ask how it is going.
CURL
curl "https://console.quqi.io/api/v1/calendar?website_id=019feda8-0ca6-70d1-b927-697fa6650cda&kind=all" \
  -H "Authorization: Bearer quqi_YOUR_KEY"
RESPONSE
{
  "success": true,
  "data": {
    "entries": [
      {
        "kind": "post",
        "id": "01a0…",
        "at": "2026-09-01T10:00:00+00:00",
        "title": "The Hidden Cost Of Manual SEO",
        "status": "planned",
        "channels": ["linkedin", "instagram"]
      },
      {
        "kind": "article",
        "id": "01a0…",
        "at": "2026-09-01T08:55:00+00:00",
        "title": "seo automation software",
        "status": "planned"
      }
    ],
    "counts": { "articles": 27, "posts": 21 }
  }
}
هل أجابت هذه الصفحة عن سؤالك؟ نعم ليس تمامًا