AurionAI Docs

Search Articles

Search KB articles using full-text search with ranked results and snippets.

GET
/api/v2/kb/search

Search KB articles using full-text search with ranked results and snippets.

Query Parameters

q*Q
Length2 <= length <= 500
language?Language
Default"english"
status?string|null
collection_id?string|null
limit?Limit
Default20
Range1 <= value <= 100
offset?Offset
Default0
Range0 <= value

Response Body

application/json

application/json

curl -X GET "https://loading/api/v2/kb/search?q=string"
{
  "items": [
    {
      "collection_id": "string",
      "collection_name": "string",
      "helpful_count": 0,
      "id": "string",
      "not_helpful_count": 0,
      "relevance_score": 0,
      "slug": "string",
      "snippet": "string",
      "status": "string",
      "title": "string",
      "updated_at": "string",
      "view_count": 0
    }
  ],
  "language": "string",
  "query": "string",
  "total": 0
}
{
  "detail": [
    {
      "loc": [
        "string"
      ],
      "msg": "string",
      "type": "string"
    }
  ]
}