Loading help center
Getting Started
Make your first authenticated request to the Buuk API in under five minutes.
The Buuk API lets you manage help centers, publish articles, and search documentation programmatically. This quickstart walks through creating a token and listing articles in your workspace.
Request a token
Exchange your workspace credentials for a bearer token. Tokens expire after 24 hours.
curl -X POST https://api.buuk.app/v1/auth/token \
-H "Content-Type: application/json" \
-d '{"email":"you@company.com","password":"your-password"}'Save the response
Copy the token field from the JSON response. Treat it like a password — never commit it to git.
{
"token": "buuk_live_abc123",
"expiresIn": 86400
}Pass the token in the Authorization header on every request.
curl https://api.buuk.app/v1/articles?status=published&limit=10 \
-H "Authorization: Bearer buuk_live_abc123"