---
title: "Reverse email lookup"
method: POST
path: "/api/search/reverse-email"
tags: ["Misc"]
---

# Reverse email lookup

`POST /api/search/reverse-email`

Find a business profile from an email address (work email or personal email).

Credit usage:
- Uses 1 finder credit if a profile is found (without profile data)
- Uses 2 finder credits if a profile is found with complete profile data (only if `with_profile` option enabled)

## Request body

- object
  - `email` string, required — Email address to lookup
  - `with_profile` boolean — optional Whether to return profile metadata (default: false)

## Response `200`

- union
  - object — Without profile enrichment
    - `linkedin_url` string
  - object — With profile enrichment
    - `fullName` string
    - `username` string
    - `headline` string
    - `jobTitle` string
    - `summary` string
    - `city` string
    - `region` string
    - `country` string
    - `companyLinkedinUrl` string
    - `companyName` string
    - `companyWebsite` string
    - `isPremium` boolean
    - `isOpenProfile` boolean
    - `skills` unknown[]
      - unknown
    - `jobs` unknown[]
      - unknown
    - `educations` object[]
      - `school` string
      - `degree` string
      - `fieldOfStudy` string
      - `startDate` string
      - `endDate` string
    - `certificates` object[]
      - `name` string
      - `issuingOrganization` string
      - `issueDate` string
      - `expirationDate` string
  - object — No LinkedIn URL found
    - `linkedin_url` string, nullable

## Other responses

- `402` — Error : Not enough credits
- `423` — Error : Subscription is paused

---

[API](https://skmtc.net/findymail/apis/findymail-api-documentation.md) · [All operations](https://skmtc.net/findymail/apis/findymail-api-documentation/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/findymail/findymail-api-documentation/revisions/ae7fddf16bf9/schema)
