Skip to main content
POST
/
v1
/
enrichment
/
emails
/
finder
Emails Finder from Data
curl --request POST \
  --url https://api.scrapin.io/v1/enrichment/emails/finder \
  --header 'Content-Type: application/json' \
  --data '{
  "fullName": "<string>",
  "companyDomain": "<string>"
}'
{
"success": true,
"credits_consumed": 2,
"credits_left": 200731,
"rate_limit_left": 99890,
"daily_rate_limit_left": 99890,
"minute_rate_limit_left": 499,
"next_minute_rate_limit_reset": "2025-10-28T15:23:32.000Z",
"emails": [
{
"value": "john@scrapin.io",
"type": "professional"
}
]
}
Beta Feature: This endpoint is currently in beta. The credit consumption price may increase in the future as we continue to optimize and enhance this feature.

Authorizations

apikey
string
query
required

This required parameter is a string. It represents the APIKEY obtained from the developer dashboard. You must use it in the query string of your request as ?apiKey=YOUR_API_KEY or in the headers as x-api-key: YOUR_API_KEY

Body

application/json
fullName
string
required

This required parameter is a string. It represents the full name of the person.

companyDomain
string
required

This required parameter is a string. It represents the company domain (e.g., 'scrapin.io') or company name.

Response

The endpoint returns email addresses found for the person.

success
boolean

Indicates success or failure of api request.

credits_consumed
integer

Represents the number of credits consumed by this query.

credits_left
integer

Represents the usable credits available for the user account after this query.

rate_limit_left
integer

Represents the usable daily request limit available for the user account after this query.

daily_rate_limit_left
integer

Represents the usable daily request limit available for the user account after this query.

minute_rate_limit_left
integer

Represents the usable minute request limit available for the user account after this query.

next_minute_rate_limit_reset
string<date-time>

Represents the next minute rate limit reset timestamp for the user account after this query.

emails
object[]

Array of email addresses found for the profile.