
Not every search question should use the same source. A docs question, a competitor question, and a research question all need different retrieval choices.
Prismfy Team
April 17, 2026
Not every search question should use the same source. A docs question, a competitor question, and a research question all need different retrieval choices.
The mistake is to default to one engine and hope it fits everything.
Before you search, ask what kind of evidence the user actually needs:
Once the evidence type is clear, the source choice becomes much easier.
domain when the answer should come from one website.timeRange when freshness matters.curl -X POST https://api.prismfy.io/v1/search \
-H "Authorization: Bearer ss_live_YOUR_KEY" \
-H "Content-Type: application/json" \
-d '{
"query": "API key rotation",
"domain": "docs.yourcompany.com",
"language": "en",
"engines": ["brave", "bing"]
}'
Then compare that with a fresher broad-web query:
curl -X POST https://api.prismfy.io/v1/search \
-H "Authorization: Bearer ss_live_YOUR_KEY" \
-H "Content-Type: application/json" \
-d '{
"query": "API key rotation best practices",
"timeRange": "month",
"language": "en",
"engines": ["brave", "bing"]
}'
The goal is not to teach search theory. The goal is to give a rule they can apply in their app:
If you want a practical search-source decision rule, start with Prismfy docs and run one POST /v1/search call per use case.
Try it free
Free tier includes 3,000 requests per 30 days. No credit card required.