QuQi API Ouvrir la console
ESC
Ouvrir la console Utiliser 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 / List your websites

List your websites

The websites this key can reach, and their ids — which most other requests need.

2 min de lecture All plans
GET /api/v1/me/websites

Your key belongs to you rather than to one website, so most requests have to say which website they mean. This is where the ids come from.

Only websites you are a member of, and only the ones this particular key is allowed to reach. role is your standing on each — it caps what a key can do there, however many permissions the key itself carries.

CURL
curl https://console.quqi.io/api/v1/me/websites \
  -H "Authorization: Bearer quqi_YOUR_KEY"
RESPONSE
{
  "success": true,
  "data": {
    "websites": [
      {
        "id": "019feda8-0ca6-70d1-b927-697fa6650cda",
        "name": "Corner Bakery",
        "domain": "cornerbakery.example",
        "role": "owner"
      }
    ]
  }
}
Cette page a-t-elle répondu à votre question ? Oui Pas vraiment