retrieval
POST /search
Hybrid retrieve over the live-web index: a lexical arm and a dense semantic arm, fused and reranked. Returns typed highlights, each self-citing its source passage.
querystring
required — the search query (1–1000 chars)topKnumber
optional — highlights to return (1–50)curl -sS https://api.ipnops.ai/search \
-H "content-type: application/json" \
-d '{ "query": "sqlite file format" }'{ "highlights": [{
"text": "…passage…", "score": 0.91,
"source": { "url": "…" } }],
"arms": { "lexical": true, "dense": true, "reranked": true } }