Skip to content

Latest commit

 

History

History
87 lines (64 loc) · 2.28 KB

index.md

File metadata and controls

87 lines (64 loc) · 2.28 KB
organization category icon_url brand_color display_name short_name description og_description og_image
tomba-io
saas
/images/plugins/tomba-io/tomba.svg
#1D6CE2
tomba.io
tomba
Steampipe plugin to query Domain or Email information from tomba.io.
Query tomba.io with SQL! Open source CLI. No DB required.
/images/plugins/tomba-io/tomba-social-graphic.png

tomba.io + Steampipe

tomba.io is an API for Search or verify lists of email addresses in minutes.

Steampipe is an open source CLI to instantly query cloud APIs using SQL.

Enrichment

query any email

select
  email,
  first_name,
  last_name
from
  tomba_enrich
where
  email = 'b.mohamed@tomba.io';
+--------------------+------------+-----------+
| email              | first_name | last_name |
+--------------------+------------+-----------+
| b.mohamed@tomba.io | Mohamed    | Ben rebia |
+--------------------+------------+-----------+

Documentation

Get started

Install

Download and install the latest tomba.io plugin:

steampipe plugin install tomba-io/tomba

Configuration

Installing the latest tomba plugin will create a config file (~/.steampipe/config/tomba.spc) with a single connection named tomba:

connection "tomba" {
  plugin = "tomba-io/tomba"

  # `key`: Tomba API Key. (Required).
  # `secret`: Tomba API secret. (Required).
  # Sign up for a free API and Secret keys at https://app.tomba.io/auth/register  
  # This can also be set via the `TOMBA_KEY` and `TOMBA_SECRET` environment variables.  

  # key = "ta_d40f89cc3b7f59a0638e1234a22fdfa9d3b86"
  # secret = "ts_121f9gf4-6f90-4856-9017-b12b5079adc9"
}
  • key - API key from tomba.io.
  • secret - API secret from tomba.io.

Alternatively, you can also use the standard Tomba environment variables to obtain credentials only if other arguments (keyand secret) are not specified in the connection:

export TOMBA_KEY=ta_d40f89cc3b7f59a0638e1234a22fdfa9d3b86
export TOMBA_SECRET=ts_121f9gf4-6f90-4856-9017-b12b5079adc9

Get involved