TheFAQApp API
API-first FAQ platform for developers. Manage and deliver FAQ content programmatically.
Quick Start
curl https://www.thefaq.app/api/v1/your-org/questions \
-H "Authorization: Bearer faq_your-api-key"Core Concepts
API-Key Authentication
Every request requires a Bearer token. Create API keys in your dashboard under Settings → API Keys.
Standard Response Format
All responses use a consistent envelope:
{
"data": { ... },
"meta": {
"pagination": {
"page": 1,
"limit": 25,
"total": 42,
"pages": 2
}
}
}Plan-Based Access
| Plan | Scopes | API Keys | Rate Limit |
|---|---|---|---|
| FREE | read | 1 | 1k req/mo |
| STARTER | read, write | 5 | 10k req/mo |
| PRO | read, write, admin | Unlimited | 100k req/mo |
| ENTERPRISE | Full | Unlimited | Custom |