Welcome to Tomba Docs! Create a free Tomba account and gain instant access to 400+ million contacts!
Language Libraries

C# Client Library

Installation

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

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

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

TerminalCode
dotnet add package Tomba --version 1.0.0

Usage

get email addresses found on the internet.

C#Code
using Tomba; Client client = new Client(); client .SetKey("ta_xxxx") // Your Key .SetSecret("ts_xxxx") // Your Secret ; Domain domain = new Domain(client); HttpResponseMessage result = await domain.DomainSearch("stripe.com");

Email Finder

Find the verified email address of any professional.

C#Code
using Tomba; Client client = new Client(); client .SetKey("ta_xxxx") // Your Key .SetSecret("ts_xxxx") // Your Secret ; 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.

C#Code
using Tomba; Client client = new Client(); client .SetKey("ta_xxxx") // Your Key .SetSecret("ts_xxxx") // Your Secret ; Verifier verifier = new Verifier(client); HttpResponseMessage result = await verifier.EmailVerifier("m@wordpress.org");

Examples

Sample codes under examples/ folder.

Last modified on