
Before outreach, you usually need only a few facts: what the company does, what changed recently, and whether there is a clear reason to reach out.
Prismfy Team
April 17, 2026
Before outreach, you usually need only a few facts: what the company does, what changed recently, and whether there is a clear reason to reach out.
That is not full enrichment. It is basic pre-research.
A good first-pass workflow can collect:
This is enough to write a better first message without pretending the lead data is complete.
curl -X POST https://api.prismfy.io/v1/search \
-H "Authorization: Bearer ss_live_YOUR_KEY" \
-H "Content-Type: application/json" \
-d '{
"query": "recent company news and product updates",
"domain": "company.com",
"timeRange": "month",
"language": "en",
"engines": ["brave", "bing"]
}'
import requests
def pre_research(company_domain: str, company_name: str) -> list[dict]:
data = requests.post(
"https://api.prismfy.io/v1/search",
headers={"Authorization": "Bearer ss_live_YOUR_KEY"},
json={
"query": f"{company_name} recent news, product updates, and pricing changes",
"domain": company_domain,
"timeRange": "month",
"language": "en",
"engines": ["brave", "bing"],
},
timeout=30,
).json()
return data.get("results", [])[:4]
notes = pre_research("company.com", "Company Name")
for item in notes:
print(item["title"], item["url"])
This workflow is for basic research before outreach, not for a full enrichment product.
If you want a practical pre-research workflow, start with Prismfy docs and use POST /v1/search to gather the signals that matter before outreach.
Try it free
Free tier includes 3,000 requests per 30 days. No credit card required.