Skip to main content
POST
/
v1
/
enrichment
/
emails
/
finder
Email Finder from Data
curl --request POST \
  --url 'https://api.scrapin.io/v1/enrichment/emails/finder?apikey=' \
  --header 'Content-Type: application/json' \
  --data '
{
  "fullName": "<string>",
  "companyDomain": "<string>"
}
'
{
  "success": true,
  "credits_consumed": 123,
  "credits_left": 123,
  "rate_limit_left": 123,
  "daily_rate_limit_left": 123,
  "minute_rate_limit_left": 123,
  "next_minute_rate_limit_reset": "<string>",
  "metadata": {
    "source": "<string>",
    "request_id": "<string>"
  },
  "emails": [
    {
      "value": "<string>",
      "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.

Email Validation & Credit Policy

Verified Email Only

We return only validated, deliverable email. No wildcards or unverified email. Every email returned has been tested for validity.

No Results = No Charge

If we don’t find any valid email, no credits are debited from your your account. You only pay when we deliver results.

Request Tracking & Reporting

Found incorrect or missing data? Visit your API Logs to view all requests and report issues directly from the web interface.
How to report an issue:
  1. Go to app.scrapin.io/api-logs
  2. Find the request you want to report in the logs table
  3. Click the “Report” button in the Actions column
  4. Select the issue type and add a description
The request_id helps our team investigate and resolve issues quickly. All enrichment requests are automatically logged for your convenience.

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
number

Represents the number of credits consumed by this query.

credits_left
number

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

rate_limit_left
number

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

daily_rate_limit_left
number

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

minute_rate_limit_left
number

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

next_minute_rate_limit_reset
string

Represents the next minute rate limit reset for the user account after this query. Datetime in ISO 8601 format (e.g., 2025-11-14T14:34:43.000Z).

metadata
object
emails
object[]

Array of email addresses found for the profile.