Language Libraries
C# Client Library
Installation
Add this reference to your project's .csproj
file:
<PackageReference Include="Tomba" Version="1.0.0" />xml
You can install packages from the command line With .NET CLI:
dotnet add package Tomba --version 1.0.0bash
Usage
Domain Search
get email addresses found on the internet.
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");cs
Email Finder
Find the verified email address of any professional.
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");cs
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") // Your Key .SetSecret("ts_xxxx") // Your Secret ; Verifier verifier = new Verifier(client); HttpResponseMessage result = await verifier.EmailVerifier("b.mohamed@tomba.io");cs
Examples
Sample codes under examples/ folder.