QuQi API Open console
ESC
Open console Using 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
Docs / API / The calendar

The calendar

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

2 min read 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 REQUIRED
Which of your websites.
from string OPTIONAL
First day. Defaults to today.
to string OPTIONAL
Last day. Defaults to thirty days after from.
kind string OPTIONAL
articles, social, or all. Defaults to all.
GOOD TO KNOW 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 }
  }
}
Did this page answer your question? Yes Not quite