POST URL: /api/v1/kb/articles
Articles are automatically embedded and indexed into Theo AI’s vector search. This happens asynchronously — if indexing fails, the article is still saved and you can recreate it to retry indexing.
Plan limits
| Plan | Max articles |
|---|---|
| Free | 5 |
| Mini | 25 |
| Pro | 1,000 |
Headers
| Header | Value |
|---|---|
| Authorization | Bearer |
| Content-Type | application/json |
Body
The title of the article. Used as context when Theo AI performs semantic search.
The full text content of the article. Write this in plain language — the AI reads it as-is to answer customer questions.
Optional array of tag strings to categorize the article (e.g.,
["billing", "refunds"]).Response
Unique integer ID of the created article.
ID of the business that owns the article.
Title of the article.
Full text content of the article.
Array of tags associated with the article.
ISO 8601 timestamp of when the article was created.
Example
Response example
Errors
| Status | Meaning |
|---|---|
| 400 | User does not belong to an organization |
| 401 | Unauthorized — missing or invalid token |
| 402 | Article limit reached — upgrade your plan to add more articles |