# Search by Email

For each email provided, identify one or more social media accounts on Instagram, YouTube, or TikTok that have listed this email in their bio or as their contact information.
		A successful request costs 0.02 credits per matched email. To execute this request, the account must have a minimum of 0.02 credits multiplied by the number of provided emails, otherwise a not_enough_credits error will be returned.
		We do not store the email addresses that you send us.

Endpoint: POST /email-search
Security: accessToken

## Request fields (application/json):

  - `emails` (array, required)
    List of emails to search
    Example: ["hello@modash.io","non-existent@modash.io"]

## Response 200 fields (application/json):

  - `error` (boolean)
    If there is an error

  - `matchedEmails` (array)
    Matches by email

  - `matchedEmails.email` (string, required)
    Email address
    Example: "example@modash.io"

  - `matchedEmails.users` (array, required)
    User details

  - `matchedEmails.users.platform` (string, required)
    Platform
    Example: "instagram"

  - `matchedEmails.users.userId` (string)
    User id of the influencer
    Example: "173560420"

  - `matchedEmails.users.url` (string, required)
    URL of Influencer
    Example: "https://www.instagram.com/instagram/"

  - `matchedEmails.users.username` (string, required)
    Username of Influencer
    Example: "instagram"

  - `matchedEmails.users.fullname` (string)
    Full name of Influencer
    Example: "Instagram"

  - `matchedEmails.users.picture` (string, required)
    Profile Picture
    Example: "https://imgigp.modash.io/?https://scontent-arn2-1.cdninstagram.com/t51.2885-19/s320x320/3232323.jpg"

  - `matchedEmails.users.followers` (number, required)
    Follower count
    Example: 313560626

  - `matchedEmails.users.engagements` (number, required)
    Engagements
    Example: 857994

  - `matchedEmails.users.engagementRate` (number, required)
    Engagement rate
    Example: 0.0027362938100525414

  - `matchedEmails.users.isVerified` (boolean, required)
    Is verified
    Example: true

  - `notMatchedEmails` (array)
    Emails that were not matched

  - `totalMatches` (number, required)
    Number of matched emails
    Example: 1


