thefaqapp

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

PlanScopesAPI KeysRate Limit
FREEread11k req/mo
STARTERread, write510k req/mo
PROread, write, adminUnlimited100k req/mo
ENTERPRISEFullUnlimitedCustom

On this page