
Steampipe
SQLでメールデータをクエリ
Steampipeは、クラウドAPIをSQLでクエリできるオープンソースツールです。Tombaプラグインにより、標準SQLクエリを使用してメールデータの検索、検証、分析が可能になります。
Steampipeとは?
SteampipeはAPIをSQLテーブルに変換し、以下のことが可能になります:
- SQLで複数のデータソースをクエリ
- 異なるAPIからデータを結合
- ダッシュボードとレポートを構築
- データ分析ワークフローを自動化
Tombaプラグインテーブル
Tomba Steampipeプラグインは以下のテーブルを提供します:
tomba_email_finder
名前とドメインでメールアドレスを検索:
SELECT * FROM tomba_email_finder
WHERE first_name = 'John'
AND domain = 'example.com';
tomba_email_verifier
メールの配信可能性を検証:
SELECT email, status, score
FROM tomba_email_verifier
WHERE email = 'john@example.com';
tomba_domain_search
ドメインのすべてのメールを検索:
SELECT * FROM tomba_domain_search
WHERE domain = 'company.com';
tomba_enrichment
メールの詳細情報を取得:
SELECT * FROM tomba_enrichment
WHERE email = 'contact@company.com';
ユースケース
- データ分析: 企業間のメールパターンを分析
- 一括処理: SQLで大量のメールリストを処理
- レポート作成: メールインテリジェンスダッシュボードを構築
- データ統合: メールデータとCRMデータを結合
- コンプライアンス: メール発見と使用状況を監査
クエリ例
見込み客リストのメール検索と検証:
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';
部門別メール数のカウント:
SELECT
department,
COUNT(*) as email_count
FROM tomba_domain_search
WHERE domain = 'company.com'
GROUP BY department;
複数企業の有効メールをすべて検索:
SELECT * FROM tomba_domain_search
WHERE domain IN ('company1.com', 'company2.com', 'company3.com')
AND status = 'valid';
インストール
- Steampipeをインストール:
brew install steampipe - Tombaプラグインをインストール:
steampipe plugin install tomba ~/.steampipe/config/tomba.spcに認証情報を設定:
connection "tomba" {
plugin = "tomba"
api_key = "your_api_key"
api_secret = "your_api_secret"
}
- クエリを開始:
steampipe query
ドキュメント
完全なテーブルスキーマとクエリ例はSteampipe Hubでご覧いただけます。
連携のヒント
- ダッシュボード: Steampipe Dashboardで可視化
- エクスポート: 結果をCSV、JSON、データベースにエクスポート
- 自動化: cronジョブでクエリをスケジュール
- CI/CD: データパイプラインに統合
オープンソース
Tomba Steampipeプラグインはオープンソースです。GitHubでのコントリビューションを歓迎します!
もっと見る
その他のインテグレーションを探す
ワークフローを拡張する他の強力なインテグレーションを発見しましょう
Airtable
公式Tombaで保存したリードをAirtableアカウントに直接同期し、データ管理を効率化してリードの整理を強化します
Albato
Albato を使用してTombaを800以上のアプリケーションと接続し、生産性を向上させましょう。ワークフローを効率化し、プロセスを自動化します
Apify
公式Apify を使用してTombaを数千のアプリと接続し、ワークフローを自動化。プロセスを簡素化し、効率を向上させます。
Claude
公式ClaudeとTombaを連携
Flowmattic
FlowMattic を使用してTombaを88以上のアプリケーションと接続し、生産性を向上。ワークフローを効率化し、プロセスを自動化します
Hubspot
公式Tombaで保存したリードをHubSpotアカウントに直接同期し、データ管理を効率化してリードの整理を強化します
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."