
Steampipe
E-Mail-Daten mit SQL abfragen
Steampipe ist ein Open-Source-Tool, mit dem Sie Cloud-APIs mit SQL abfragen können. Das Tomba-Plugin ermöglicht es Ihnen, E-Mail-Daten mit Standard-SQL-Abfragen zu suchen, zu verifizieren und zu analysieren.
Was ist Steampipe?
Steampipe verwandelt APIs in SQL-Tabellen, sodass Sie:
- Mehrere Datenquellen mit SQL abfragen können
- Daten aus verschiedenen APIs verbinden können
- Dashboards und Berichte erstellen können
- Datenanalyse-Workflows automatisieren können
Tomba-Plugin-Tabellen
Das Tomba Steampipe-Plugin stellt diese Tabellen bereit:
tomba_email_finder
E-Mail-Adressen anhand von Name und Domain finden:
SELECT * FROM tomba_email_finder
WHERE first_name = 'John'
AND domain = 'example.com';
tomba_email_verifier
E-Mail-Zustellbarkeit verifizieren:
SELECT email, status, score
FROM tomba_email_verifier
WHERE email = 'john@example.com';
tomba_domain_search
Alle E-Mails einer Domain suchen:
SELECT * FROM tomba_domain_search
WHERE domain = 'company.com';
tomba_enrichment
Detaillierte E-Mail-Informationen erhalten:
SELECT * FROM tomba_enrichment
WHERE email = 'contact@company.com';
Anwendungsfälle
- Datenanalyse: E-Mail-Muster über Unternehmen analysieren
- Massenoperationen: Große E-Mail-Listen mit SQL verarbeiten
- Berichterstellung: E-Mail-Intelligence-Dashboards erstellen
- Datenintegration: E-Mail-Daten mit CRM-Daten verbinden
- Compliance: E-Mail-Erkennung und -Nutzung prüfen
Beispielabfragen
E-Mails für eine Liste von Interessenten finden und verifizieren:
SELECT
f.first_name,
f.last_name,
f.email,
v.status,
v.score
FROM tomba_email_finder f
LEFT JOIN tomba_email_verifier v ON f.email = v.email
WHERE f.domain = 'techcorp.com';
E-Mails nach Abteilung zählen:
SELECT
department,
COUNT(*) as email_count
FROM tomba_domain_search
WHERE domain = 'company.com'
GROUP BY department;
Alle gültigen E-Mails bei mehreren Unternehmen finden:
SELECT * FROM tomba_domain_search
WHERE domain IN ('company1.com', 'company2.com', 'company3.com')
AND status = 'valid';
Installation
- Steampipe installieren:
brew install steampipe - Tomba-Plugin installieren:
steampipe plugin install tomba - Zugangsdaten konfigurieren in
~/.steampipe/config/tomba.spc:
connection "tomba" {
plugin = "tomba"
api_key = "your_api_key"
api_secret = "your_api_secret"
}
- Abfragen starten:
steampipe query
Dokumentation
Vollständige Tabellenschemata und Abfragebeispiele sind im Steampipe Hub verfügbar.
Integrationstipps
- Dashboards: Zusammen mit Steampipe Dashboard für Visualisierung verwenden
- Exporte: Ergebnisse in CSV, JSON oder Datenbanken exportieren
- Automatisierung: Abfragen mit Cron-Jobs planen
- CI/CD: In Datenpipelines integrieren
Open Source
Das Tomba Steampipe-Plugin ist Open Source. Beiträge auf GitHub sind willkommen!
Informationen
Rechtliches
Bereit loszulegen?
Registrieren Sie sich kostenlos und beginnen Sie, Tomba mit Steampipe zu integrieren.
Keine Kreditkarte erforderlich • 75 kostenlose Credits
Mehr entdecken
Weitere Integrationen entdecken
Entdecken Sie weitere leistungsstarke Integrationen, um Ihren Workflow zu erweitern
Airtable
OffiziellSynchronisieren Sie mit Tomba gespeicherte Leads mühelos direkt mit Ihrem Airtable-Konto, um Ihr Datenmanagement zu optimieren und die Lead-Organisation zu verbessern
Albato
Steigern Sie Ihre Produktivität, indem Sie Tomba mit über 800 Anwendungen über Albato verbinden. Optimieren Sie Ihren Workflow und automatisieren Sie Prozesse
Apify
OffiziellAutomatisieren Sie Ihre Workflows, indem Sie Tomba mit Tausenden von Apps über Apify verbinden. Vereinfachen Sie Ihre Prozesse und steigern Sie die Effizienz.
Claude
OffiziellClaude mit Tomba integrieren
Flowmattic
Steigern Sie Ihre Produktivität, indem Sie Tomba mit über 88 Anwendungen über Flowmattic verbinden. Optimieren Sie Ihren Workflow und automatisieren Sie Prozesse
Hubspot
OffiziellSynchronisieren Sie mit Tomba gespeicherte Leads mühelos direkt mit Ihrem Hubspot-Konto, um Ihr Datenmanagement zu optimieren und die Lead-Organisation zu verbessern
Trusted by 150,000+ professionals
"Stellar product and amazing support. I have tested many tools and this one is far superior by far. I highly recommend it."
"I spend 3+ months creating best in class content in the form of data-based research studies. When all is said and done, Tomba is the tool I turn to."
"Tomba.io is very fast and has lots of features to help anyone prospect and find exactly who you need to find. I'm saving at least 5 hours a week!"
"The data is always fresh, and the n8n integration is excellent for my use case. Support is very responsive overall. I'd rate it 9/10."
"Since years, Tomba has provided the most results per search, and still it keeps getting better. I highly recommend Tomba."
"I've tested over a dozen email finder tools, and Tomba.io stands out as the best. It consistently delivers accurate results and is incredibly easy to set up."
"As a Founder, as well as a sales leader, there are three things that are important to me: cost effective, easy to use, and accurate data. I actively recommend it."
"It's a great product. I have tried a lot of products in the past, but this is the best one I have ever found."
"Stellar product and amazing support. I have tested many tools and this one is far superior by far. I highly recommend it."
"I spend 3+ months creating best in class content in the form of data-based research studies. When all is said and done, Tomba is the tool I turn to."
"Tomba.io is very fast and has lots of features to help anyone prospect and find exactly who you need to find. I'm saving at least 5 hours a week!"
"The data is always fresh, and the n8n integration is excellent for my use case. Support is very responsive overall. I'd rate it 9/10."
"Since years, Tomba has provided the most results per search, and still it keeps getting better. I highly recommend Tomba."
"I've tested over a dozen email finder tools, and Tomba.io stands out as the best. It consistently delivers accurate results and is incredibly easy to set up."
"As a Founder, as well as a sales leader, there are three things that are important to me: cost effective, easy to use, and accurate data. I actively recommend it."
"It's a great product. I have tried a lot of products in the past, but this is the best one I have ever found."