Skip to content

Latest commit

 

History

History
22 lines (20 loc) · 493 Bytes

README.md

File metadata and controls

22 lines (20 loc) · 493 Bytes

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,
        "[email protected]"
);
// Company Data:
// Use the service to perform a search by company domain.
var companyData = Service.Search(
        apiKey,
        CompanyLookup.Domain,
        "domain.com"
);