curl --request POST \
--url https://api.example.com/api/v1/email-finder/search \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "<string>",
"company": "<string>",
"domain": "<string>"
}
'{
"found": true,
"person": {},
"prediction": {},
"verification": {},
"confidence_breakdown": {},
"source": "none",
"error": "<string>"
}Search for a B2B contact by name + company/domain.
Returns a profile from the database if found, or predicted email patterns with confidence scores if not found. Costs 0 credits (monthly lookup limit only).
curl --request POST \
--url https://api.example.com/api/v1/email-finder/search \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "<string>",
"company": "<string>",
"domain": "<string>"
}
'{
"found": true,
"person": {},
"prediction": {},
"verification": {},
"confidence_breakdown": {},
"source": "none",
"error": "<string>"
}Documentation Index
Fetch the complete documentation index at: https://bavlio.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.