HelpBase HQ Documentation overview
Everything you need to integrate HelpBase HQ into your application. Build knowledge bases, blogs, and community forums for your customers.
pk_) for read-only operations in client-side code, and Secret keys (prefix sk_) for full CRUD access on your server.https://app.helpbasehq.io/api/v1const response = await fetch(
'https://app.helpbasehq.io/api/v1/blog/posts?limit=10',
{
headers: {
'X-API-Key': 'pk_live_your_api_key'
}
}
);
const { data, pagination } = await response.json();