/FullContactSharp

Full Contact C# API Wrapper

Primary LanguageC#GNU General Public License v3.0GPL-3.0

FullContactSharp

Full Contact C# API Wrapper - Used to query, wrap and cast data from FullContact.com

// Person Data:
// Use the service to perform a search by person email.
var personData = Service.Search(
        apiKey,
        PersonLookup.Email,
        "person@domain.com"
);
// Company Data:
// Use the service to perform a search by company domain.
var companyData = Service.Search(
        apiKey,
        CompanyLookup.Domain,
        "domain.com"
);