Find your answer in our knowledge base

Official Tomba API client for csharp

Tomba Email Finder developer SDK for csharp

Purpose?

Find and verify the email of an individual given a name and domain or a company.

Additional functions:

  • Check the account status.
  • Checking how many request left.
  • Checking domain information .
  • Email Verifier.
  • Email Finder.
  • Email Sources.
  • List all your leads.
  • Lead Attributes.
  • domain autocomplete.
  • Checking List all your keys.
  • Usage.
  • Account Logs.
  • Email Count.

Installation

Add this reference to your project's .csproj file:

<PackageReference Include="Tomba" Version="1.0.0" />

You can install packages from the command line With .NET CLI:

dotnet add package Tomba --version 1.0.0

Usage

Domain Search

get email addresses found on the internet.

using Tomba;

Client client = new Client();

client
  .SetKey("ta_xxxx") 
  .SetSecret("ts_xxxx") 
;

Domain domain = new Domain(client);

HttpResponseMessage result = await domain.DomainSearch("stripe.com");

Email Finder

Generates or retrieves the most likely email address from a domain name, a first name and a last name.

using Tomba;

Client client = new Client();

client
  .SetKey("ta_xxxx") 
  .SetSecret("ts_xxxx") 
;

Finder finder = new Finder(client);

HttpResponseMessage result = await finder.EmailFinder("stripe.com", "Fname", "Lname");

Email Verifier

Verify the validity of any professional email address with the most complete email checker.

using Tomba;

Client client = new Client();

client
  .SetKey("ta_xxxx") 
  .SetSecret("ts_xxxx") 
;

Verifier verifier = new Verifier(client);

HttpResponseMessage result = await verifier.EmailVerifier("b.mohamed@tomba.io");

Examples

Sample codes under examples/ folder.

Documentation

See the official documentation.

Other Libraries

There are official Tomba Email Finder client libraries available for many languages including PHP, Python, Go, Java, Ruby, and many popular frameworks such as Django, Rails and Laravel. There are also many third party libraries and integrations available for our API.

https://developer.tomba.io/#introduction-libraries

Get started here: Official Tomba API client for csharp

Still have questions?

If you have any issues or questions about Tomba, feel free to contact us, we will be happy to help you!