Context-Aware Semantic Retrieval
Searches unstructured documentation by intent, technical concept, and context rather than exact keyword string matching.
Loading RsFlowHub...
Sub-200ms semantic knowledge base search API delivering context-aware document chunk retrieval for RAG workflows.
https://www.rsflowhub.com/api/v1/ai/kb-search
Semantic Knowledge Base Vector Search API is a production-ready cloud REST API endpoint hosted on RSFlowHub designed for developers building high-throughput web, mobile, and AI agent applications. It accepts structured JSON payloads via POST /api/v1/knowledge-bases, executes sub-180ms inference across global edge regions, and returns deterministic, type-safe JSON envelopes without unpredictable hallucination.
X-API-Key Header
curl -X POST "https://www.rsflowhub.com/api/v1/knowledge-bases" \
-H "Content-Type: application/json" \
-H "X-API-Key: rsh_live_your_api_key_here" \
-d '{"name":"Customer Support KB","description":"Knowledge base containing product FAQs, return policies, and documentation."}'
<?php
$client = new \GuzzleHttp\Client();
$response = $client->post('https://www.rsflowhub.com/api/v1/knowledge-bases', [
'headers' => [
'Content-Type' => 'application/json',
'X-API-Key' => 'rsh_live_your_api_key_here',
],
'json' => array (
'name' => 'Customer Support KB',
'description' => 'Knowledge base containing product FAQs, return policies, and documentation.',
),
]);
echo $response->getBody();
const response = await fetch('https://www.rsflowhub.com/api/v1/knowledge-bases', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
'X-API-Key': 'rsh_live_your_api_key_here'
},
body: JSON.stringify({"name":"Customer Support KB","description":"Knowledge base containing product FAQs, return policies, and documentation."})
});
const data = await response.json();
console.log(data);
import requests
url = "https://www.rsflowhub.com/api/v1/knowledge-bases"
headers = {
"Content-Type": "application/json",
"X-API-Key": "rsh_live_your_api_key_here"
}
payload = {"name":"Customer Support KB","description":"Knowledge base containing product FAQs, return policies, and documentation."}
response = requests.post(url, json=payload, headers=headers)
print(response.json())
Searches unstructured documentation by intent, technical concept, and context rather than exact keyword string matching.
Combines lexical BM25 keyword matching with dense vector embeddings for maximum search precision.
Returns exact relevant text snippets, section headings, and document metadata citations.
Supports searching across technical API documentation, user manuals, and internal SOP procedures.
See how developers integrate this API endpoint into production apps.
Power instant intelligent search across thousands of technical API documentation pages and code examples.
Retrieve relevant technical documentation chunks to feed LLM prompt context for grounded chatbot responses.
Enable company employees to search internal HR policies, IT security rules, and expense guidelines instantly.
Comparing RSFlowHub's specialized API gateway vs raw multi-turn LLM prompts vs legacy regex rules.
| Evaluation Metric | RSFlowHub API | Raw LLM Prompts | Legacy Regex / Rules |
|---|---|---|---|
| Response Structure | Strict typed JSON envelope | Unstructured markdown or chat format | Brittle custom regex tuples |
| Latency Performance | 120ms - 220ms edge cached | 1,500ms - 4,000ms streaming | 50ms (Zero semantic capability) |
| Pricing Model | Flat 3 credit/request | Volatile token-based billing | High server maintenance overhead |
| Multi-Turn Hallucination | Zero (Deterministic validators) | Frequent schema drift & hallucinations | No semantic AI intelligence |
| Developer Integration | 3 lines cURL, PHP, JS, Python | Complex prompt engineering & retry loop | Fragile manual rule maintenance |
query
string
User search query or technical question to retrieve knowledge snippets for.
documents
array
Array of document objects or text chunks to search over.
top_k
integer
Number of top relevant document snippets to retrieve (Default: 5).
filter_metadata
object
Optional metadata filter key-value pairs (e.g. {"category": "billing"}).
All API endpoints return uniform JSON envelopes with status code, execution metadata, and data payload.
{
"status": "success",
"code": 200,
"message": "Processed successfully",
"data": {
"result": "Sample output result"
},
"meta": {
"credits_deducted": 3,
"execution_time_ms": 142
}
}
Everything you need to know about integrating and using Semantic Knowledge Base Vector Search API.
Get started in minutes with free welcome credits and instant API key generation.
⚡ 24h Bug Fix SLA: If you face any issues, submit them & we fix them within 24 hours.
💡 Custom APIs: Need custom AI models or APIs? Tell us and we will build them for you.