API Documentation

Overview

The Email Finder API finds email addresses based on a company's domain and optionally, a person's name.

Base URL

https://efinder.io/api/v1/

Endpoint

GET /email-finder
GET

https://efinder.io/api/v1/email-finder?domain=[COMPANY DOMAIN]&name=[PERSON NAME]&api_key=[YOUR API KEY]

You can create your API key in your API Dashboard page.

Request Parameters

Parameter Type Description Required
api_key String API key for authentication. Yes
domain String Company's domain name. Yes
name String Person's full name. No

Expected Output

                    {
                      "data": {
                        "emails": [
                          {
                            "email": "richard.hendricks@piedpiper.com",
                            "confidence": "great",
                            "seniority": "top_management",
                            "jobTitle": "CEO",
                            "firstName": "Richard",
                            "lastName": "Hendricks",
                            "linkedInUrl": "\/in\/richard-hendricks",
                            "twitterUrl": "RichardHendricksOK",
                            "facebookUrl": null,
                            "instagramUrl": null,
                            "personalEmail": "richard.hendricks@gmail.com",
                            "companyName": "Pied Piper Inc.",
                            "companyLinkedInUrl": "pied-piper"
                          },
                          {
                            "email": "bertram.gilfoyle@piedpiper.com",
                            "confidence": "great",
                            "seniority": "top_management",
                            "jobTitle": "Software Engineer",
                            "firstName": "Bertram",
                            "lastName": "Gilfoyle",
                            "linkedInUrl": "\/in\/bertram-gilfoyle",
                            "twitterUrl": "bertramgilfoyle",
                            "facebookUrl": null,
                            "instagramUrl": null,
                            "personalEmail": "bertram.gilfoyle@gmail.com",
                            "companyName": "Pied Piper Inc.",
                            "companyLinkedInUrl": "pied-piper"
                          },
                        ],
                        "responseData": {
                          "hits": 99,
                          "timeout": false,
                          "records": 10,
                          "page": 1
                        }
                      },
                      "currentPage": 1,
                      "totalPages": 10,
                      "totalRecords": 99,
                      "availableCredits": 50
                    }
                  

Contact

For issues, contact support@efinder.io.