r

Official R library for Tomba Email Finder

https://github.com/tomba-io/r

Science Score: 26.0%

This score indicates how likely this project is to be science-related based on various indicators:

  • CITATION.cff file
  • codemeta.json file
    Found codemeta.json file
  • .zenodo.json file
    Found .zenodo.json file
  • DOI references
  • Academic publication links
  • Committers with academic emails
  • Institutional organization owner
  • JOSS paper metadata
  • Scientific vocabulary similarity
    Low similarity (10.2%) to scientific vocabulary

Keywords

email email-validation email-verification
Last synced: 6 months ago · JSON representation

Repository

Official R library for Tomba Email Finder

Basic Info
  • Host: GitHub
  • Owner: tomba-io
  • License: other
  • Language: R
  • Default Branch: master
  • Homepage: https://tomba.io
  • Size: 50.8 KB
Statistics
  • Stars: 0
  • Watchers: 0
  • Forks: 0
  • Open Issues: 0
  • Releases: 0
Topics
email email-validation email-verification
Created almost 5 years ago · Last pushed 10 months ago
Metadata Files
Readme License

README.md

Tomba Tomba Email Finder R Client Library

This is the official R client library for the Tomba.io Email Finder API, allowing you to:

  • Domain Search (Search emails are based on the website You give one domain name and it returns all the email addresses found on the internet.)
  • Email Finder (This API endpoint generates or retrieves the most likely email address from a domain name, a first name and a last name..)
  • Author Finder (Instantly discover the email addresses of article authors.)
  • Enrichment (The Enrichment lets you find the current job title, company, location and social profiles of the person behind the email.)
  • Linkedin Finder (The Linkedin lets you find the current job title, company, location and social profiles of the person behind the linkedin URL.)
  • Email Verifier (checks the deliverability of a given email address, verifies if it has been found in our database, and returns their sources.)

Getting Started

You'll need an Tomba API access token, which you can get by signing up for a free account at https://app.tomba.io/auth/register

The free plan is limited to 25 search request and 50 verification a month, To enable all the data fields and additional request volumes see https://tomba.io/pricing.

Installation

To install

bash install.packages("tomba")

or via devtools devtools:

bash devtools::install_github("tomba-io/r")

Usage

Domain Search

get email addresses found on the internet.

r client <- Tomba(key="ta_xxxx",secret="ts_xxxx") data <- domain_search(client, domain="tomba.io")

Domain Search Response

json { "data": { "organization": { "location": { "country": "US", "city": "San Francisco", "state": "California", "street_address": "-122.41" }, "social_links": { "twitter_url": "https://twitter.com/stripe", "facebook_url": "https://www.facebook.com/StripeHQ", "linkedin_url": "https://www.linkedin.com/company/2135371" }, "disposable": false, "webmail": false, "website_url": "stripe.com", "phone_number": "", "industries": "internet", "postal_code": "94107", "employee_count": 976, "founded": "2010", "company_size": "1001-5000", "last_updated": "2023-03-28T16:21:55+01:00", "revenue": "150000", "accept_all": true, "description": "Stripe is a financial infrastructure platform for businesses. Millions of companies—from the world’s largest enterprises to the most ambitious startups—use Stripe to accept payments, grow their revenue, and accelerate new business opportunities. Headquartered in San Francisco and Dublin, the company aims to increase the GDP of the internet.", "pattern": "{first}", "domain_score": 30, "organization": "stripe", "whois": { "registrar_name": "SafeNames Ltd.", "created_date": "1995-09-12 00:00:00", "referral_url": "https://www.safenames.net/" } }, "emails": [ { "email": "**@stripe.com", "first_name": "**", "last_name": "**", "full_name": "** **", "gender": "female", "phone_number": null, "type": "personal", "country": "US", "position": "Financial Crimes Analyst", "department": "finance", "seniority": "senior", "twitter": null, "linkedin": "https://www.linkedin.com/in/**", "accept_all": true, "pattern": "{first}", "score": 90, "verification": { "date": null, "status": null }, "last_updated": "2023-02-21T14:18:24+01:00", "sources": [ { "uri": "https://stripe.com/docs/cli", "website_url": "stripe.com", "extracted_on": "2022-03-08T01:23:16+01:00", "last_seen_on": "2022-08-04T09:42:10+01:00", "still_on_page": true } ] }, ... ... ... ... ] }, "meta": { "total": 2031, "pageSize": 10, "current": 0, "total_pages": 204 } }

Email Finder

Find the verified email address of any professional.

r client <- Tomba(key="ta_xxxx",secret="ts_xxxx") data <- email_finder(client, domain="tomba.io",fname="FNAME",lname="LNAME")

Email Finder Response

json { "data": { "email": "b.mohamed@tomba.io", "first_name": "Mohamed", "last_name": "Ben rebia", "full_name": "Mohamed Ben rebia", "gender": "male", "country": null, "position": "CEO", "twitter": null, "linkedin": "https://www.linkedin.com/in/mohamed-ben-rebia", "phone_number": null, "accept_all": null, "website_url": "tomba.io", "company": "Tomba technology web service LLC ", "score": 99, "verification": { "date": "2022-05-25", "status": "valid" }, "sources": [ { "uri": "https://github.com/tomba-io/generic-emails/blob/084fc1a63d3cdaf9a34f255bedc2baea49a8e8b9/src/lib/validation/hash.ts", "website_url": "github.com", "extracted_on": "2021-02-08T20:09:54+01:00", "last_seen_on": "2021-02-08T22:43:40+01:00", "still_on_page": true }, ... ... ... ] } }

Email Verifier

Verify the validity of any professional email address with the most complete email checker.

r client <- Tomba(key="ta_xxxx",secret="ts_xxxx") data <- email_verifier(client, email="b.mohamed@tomba.io")

Email Verifier Response

json { "data": { "email": { "mx_records": true, "smtp_server": true, "smtp_check": true, "accept_all": false, "block": false, "email": "b.mohamed@tomba.io", "gibberish": false, "disposable": false, "webmail": false, "regex": true, "whois": { "registrar_name": "NameCheap, Inc.", "created_date": "2020-07-07 20:54:07", "referral_url": "https://www.namecheap.com/" }, "status": "valid", "result": "deliverable", "score": 100 }, "sources": [ { "uri": "https://github.com/tomba-io/generic-emails/blob/084fc1a63d3cdaf9a34f255bedc2baea49a8e8b9/src/lib/validation/hash.ts", "website_url": "github.com", "extracted_on": "2021-02-08T20:09:54+01:00", "last_seen_on": "2021-02-08T22:43:40+01:00", "still_on_page": true }, ... ... ... ] } }

Examples

Sample codes under examples/ folder.

Documentation

See the official documentation.

Other Libraries

There are official Tomba Email Finder client libraries available for many languages including PHP, Python, Go, Java, Ruby, and many popular frameworks such as Django, Rails and Laravel. There are also many third party libraries and integrations available for our API.

https://docs.tomba.io/libraries

About Tomba

Founded in 2021, Tomba prides itself on being the most reliable, accurate, and in-depth source of Email address data available anywhere. We process terabytes of data to produce our Email finder API, company.

image

Contribution

  1. Fork it (https://github.com/tomba-io/r/fork)
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create a new Pull Request

License

Please see the Apache 2.0 license file for more information.

Owner

  • Name: Tomba
  • Login: tomba-io
  • Kind: organization
  • Email: support@tomba.io
  • Location: Global

Data to power your entire business

GitHub Events

Total
  • Push event: 1
Last Year
  • Push event: 1

Committers

Last synced: over 2 years ago

All Time
  • Total Commits: 20
  • Total Committers: 2
  • Avg Commits per committer: 10.0
  • Development Distribution Score (DDS): 0.2
Past Year
  • Commits: 3
  • Committers: 1
  • Avg Commits per committer: 3.0
  • Development Distribution Score (DDS): 0.0
Top Committers
Name Email Commits
Mohamed Ben b****d@t****o 16
Abed-rahim a****6@g****m 4
Committer Domains (Top 20 + Academic)

Issues and Pull Requests

Last synced: 7 months ago

All Time
  • Total issues: 0
  • Total pull requests: 0
  • Average time to close issues: N/A
  • Average time to close pull requests: N/A
  • Total issue authors: 0
  • Total pull request authors: 0
  • Average comments per issue: 0
  • Average comments per pull request: 0
  • Merged pull requests: 0
  • Bot issues: 0
  • Bot pull requests: 0
Past Year
  • Issues: 0
  • Pull requests: 0
  • Average time to close issues: N/A
  • Average time to close pull requests: N/A
  • Issue authors: 0
  • Pull request authors: 0
  • Average comments per issue: 0
  • Average comments per pull request: 0
  • Merged pull requests: 0
  • Bot issues: 0
  • Bot pull requests: 0
Top Authors
Issue Authors
Pull Request Authors
Top Labels
Issue Labels
Pull Request Labels

Packages

  • Total packages: 1
  • Total downloads:
    • cran 204 last-month
  • Total dependent packages: 0
  • Total dependent repositories: 0
  • Total versions: 1
  • Total maintainers: 1
cran.r-project.org: tomba

Official R Library for Tomba Email Finder

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 204 Last month
Rankings
Forks count: 28.8%
Dependent packages count: 29.8%
Stargazers count: 35.2%
Dependent repos count: 35.5%
Average: 43.2%
Downloads: 86.5%
Maintainers (1)
Last synced: 6 months ago

Dependencies

DESCRIPTION cran
  • R >= 3.0.0 depends
  • httr * imports
  • jsonlite * imports
  • methods * imports
  • testthat * imports