Integrate Tomba Finder with Steampipe
Overview
The Tomba Steampipe plugin allows you to query email intelligence data using SQL. This plugin provides access to Tomba.io's powerful email finder, verifier, and enrichment APIs through familiar SQL syntax.
Key Features
- 🔍 Email Discovery: Find email addresses from names and domains
- Email Verification: Verify email deliverability and validity
- 🌐 Domain Intelligence: Search entire domains for email patterns
- 📊 Data Enrichment: Get detailed information about contacts and companies
- 🔗 SQL Interface: Query using standard SQL syntax
- ⚡ Real-time Data: No ETL required - query live data directly
Use Cases
- Lead Generation: Find and verify prospect email addresses
- Data Enrichment: Complete missing contact information in your database
- Email Validation: Bulk verify email lists for marketing campaigns
- Competitive Intelligence: Research competitor team structures
- Sales Prospecting: Build targeted contact lists with verified emails
- Security Auditing: Monitor your domain for exposed email addresses
Quick Start
Prerequisites
- Steampipe installed
- Tomba.io account with API access
- Tomba API credentials (Key and Secret)
Install and Query
Code
Installation
Install Plugin
Code
Verify Installation
Code
Configuration
Basic Configuration
Create or edit the configuration file at ~/.steampipe/config/tomba.spc:
Code
Environment Variables
Alternatively, set environment variables:
Code
Configuration Options
| Option | Environment Variable | Description | Required |
|---|---|---|---|
key | TOMBA_KEY | Your Tomba API key | Yes |
secret | TOMBA_SECRET | Your Tomba API secret | Yes |
timeout | TOMBA_TIMEOUT | Request timeout in seconds (default: 60) | ❌ No |
retries | TOMBA_RETRIES | Number of retry attempts (default: 3) | ❌ No |
Getting API Credentials
- Sign up for a Tomba.io account
- Navigate to the API section
- Copy your API Key and Secret
- Configure the plugin with your credentials
Tables
The Tomba plugin provides the following tables:
| Table | Description |
|---|---|
tomba_enrich | Enrich email addresses with contact information |
tomba_email_finder | Find email addresses from names and domains |
tomba_email_verifier | Verify email address deliverability |
tomba_domain_search | Search domains for all email addresses |
tomba_company_finder | Get company information and statistics |
tomba_sources | Find sources where emails appear online |
Table Schemas
tomba_enrich
Enrich email addresses with detailed contact information.
Key Columns:
email(text) - Email address to enrichfirst_name(text) - Contact's first namelast_name(text) - Contact's last namefull_name(text) - Contact's full nameposition(text) - Job title/positioncompany(text) - Company namecountry(text) - Country locationscore(integer) - Confidence score (0-100)sources(jsonb) - Array of sources where email was found
tomba_email_finder
Find email addresses using first name, last name, and domain.
Key Columns:
domain(text) - Company domain (required)first_name(text) - Person's first name (required)last_name(text) - Person's last name (required)email(text) - Found email addressscore(integer) - Confidence scoreposition(text) - Job positiondepartment(text) - Departmentsources(jsonb) - Sources where found
tomba_email_verifier
Verify email address deliverability and validity.
Key Columns:
email(text) - Email address to verify (required)status(text) - Verification status (valid/invalid/risky)result(text) - Detailed verification resultscore(integer) - Deliverability scoredisposable(boolean) - Is disposable emailwebmail(boolean) - Is webmail providerrole(boolean) - Is role-based emailfree(boolean) - Is free email provider
tomba_domain_search
Search entire domains for email addresses and patterns.
Key Columns:
domain(text) - Domain to search (required)email(text) - Found email addressfirst_name(text) - Contact first namelast_name(text) - Contact last nameposition(text) - Job positiondepartment(text) - Departmentseniority(text) - Seniority levelsources(jsonb) - Sources array
tomba_company_finder
Get comprehensive company information and statistics.
Key Columns:
domain(text) - Company domain (required)organization(text) - Company namedescription(text) - Company descriptionindustry(text) - Industry sectorcountry(text) - Company locationsize(text) - Company size rangefounded(integer) - Founded yearwebsite_url(text) - Company websitetotal_emails(integer) - Total email count
tomba_sources
Find sources where email addresses appear online.
Key Columns:
email(text) - Email address to search (required)uri(text) - Source URLwebsite_url(text) - Website domainextracted_on(timestamp) - When email was extractedlast_seen_on(timestamp) - Last seen datestill_on_page(boolean) - Still appears on page
Examples
Email Enrichment
Code
Bulk Email Verification
Code
Find Decision Makers
Code
Email Discovery Pipeline
Code
Company Intelligence Report
Code
Lead Scoring System
Code
Domain Monitoring
Code
Development
Prerequisites for Development
Clone and Build
Code
Testing
Code
Contributing
- Fork the repository
- Create your feature branch (
git checkout -b feature/amazing-feature) - Add tests for new functionality
- Commit your changes (
git commit -m 'Add amazing feature') - Push to the branch (
git push origin feature/amazing-feature) - Open a Pull Request
Development Guidelines
- Follow Steampipe plugin development guidelines
- Add comprehensive tests for new tables and columns
- Update documentation for any changes
- Ensure proper error handling and logging
- Follow Go best practices and formatting
Support
Documentation & Resources
Community & Support
Getting Help
- Check the FAQ for common questions
- Search existing issues
- Join the Steampipe community
- Create a new issue with detailed information
Acknowledgments
- Thanks to the Steampipe team for creating an amazing platform