API Reference
Search API — Full-Text FAQ Search
Full-text search across FAQ questions via the TheFAQApp API. Typo-tolerant, weighted results with highlighting and relevance scoring.
Full-text search across questions
Search questions
Authorization
BearerAuth AuthorizationBearer <token>
API key authentication. Get your key from the dashboard under Settings > API Keys.
In: header
Path Parameters
organizationSlug*string
Query Parameters
q*string
Search query (required)
Length
1 <= lengthpage?|
limit?|
Range
value <= 50category?string
Filter by category slug
Response Body
application/json
curl -X GET "https://app.thefaq.app/api/v1/string/search?q=how+to"{
"data": {
"query": "string",
"results": [
{
"id": "string",
"question": "string",
"answer": "string",
"slug": "string",
"category": {
"id": "string",
"name": "string",
"slug": "string"
},
"tags": [
"string"
],
"views": 0,
"createdAt": "2019-08-24T14:15:22Z"
}
]
},
"meta": {
"pagination": {
"page": 0,
"limit": 0,
"total": 0,
"pages": 0
}
}
}Empty
Empty
Categories API — Organize FAQ Content
Manage FAQ categories via the TheFAQApp REST API. Create, update, reorder, and delete categories for your knowledge base.
FAQs API — Public FAQ Page Data
Retrieve public FAQ page data including questions, categories, and metadata. Used by widgets and public-facing integrations.