research_company
A grounded, cited answer to a question about a company.
research_company answers a specific question about a company, grounded only in real
sources. It searches for the question, synthesizes a short answer from the excerpts, and
returns the source URLs. Use it when a snapshot is not enough and you need synthesis with
citations you can check.
#Call it
curl https://api.stackresolve.dev/v1/research \
-H "x-api-key: $STACKRESOLVE_API_KEY" \
-H "content-type: application/json" \
-d '{"domain": "resend.com", "question": "does it support batch sending?"}'#Parameters
domainstringrequiredThe company domain, for example resend.com.
questionstringThe question to answer. Omit it for a general overview (products, funding, recent news).
#Response
Response (trimmed)
{
"domain": "resend.com",
"question": "Resend: does it support batch sending?",
"answer": "Yes, Resend supports batch sending. You can send up to 100 emails in a single API call using their batching endpoint. Each email in the batch can have different recipients, subjects, and content, and the response returns an array of email IDs in request order.",
"sources": [
"https://resend.com/docs/api-reference/emails/send-batch-emails",
"https://resend.com/docs/dashboard/emails/batch-sending",
"https://resend.com/blog/introducing-the-batch-emails-api"
]
}#Response fields
answerstringA short, grounded answer, typically three to six sentences. It is grounded strictly in the
returned sources. If the sources do not support a claim, it is not made.
sourcesstring[]The exact URLs behind the answer. Cite them or open them to verify.
Tip
Ask narrow questions. "Does it support marketplaces and payouts?" beats "tell me about
this company". A narrow question returns tighter sources and a sharper answer.
#Related
- get_company: the structured snapshot.
- Sources: how provenance works.