Title: | Official R Library for Tomba Email Finder |
---|---|
Description: | Email Finder R Client Library. 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 generates or retrieves the most likely email address from a domain name, a first name and a last name. Email verify checks the deliverability of a given email address, verifies if it has been found in our database, and returns their sources. |
Authors: | Abedrahim Ben rebia [aut, cre],Mohamed Ben rebia [ctb], Tomba.io [cph] |
Maintainer: | Abedrahim Ben rebia <[email protected]> |
License: | Apache License (== 2.0) |
Version: | 1.0.2 |
Built: | 2024-11-12 04:40:35 UTC |
Source: | https://github.com/tomba-io/r |
account
Returns information about the current account.
account(obj) ## S4 method for signature 'Tomba' account(obj)
account(obj) ## S4 method for signature 'Tomba' account(obj)
obj |
Tomba class |
A list your account data containing your pricing,first_name,last_name,email,country,requests used on domain search and email finder, and email verifier.
https://developer.tomba.io/#account-information
## Not run: client <- Tomba(key="ta_xxxx",secret="ts_xxxx") result <- account(obj) ## End(Not run)
## Not run: client <- Tomba(key="ta_xxxx",secret="ts_xxxx") result <- account(obj) ## End(Not run)
Account path
ACCOUNT_PATH
ACCOUNT_PATH
An object of class character
of length 1.
author_finder
This API endpoint generates or retrieves the most likely email address from a blog post url.
author_finder(obj, url) ## S4 method for signature 'Tomba' author_finder(obj, url)
author_finder(obj, url) ## S4 method for signature 'Tomba' author_finder(obj, url)
obj |
Tomba class |
url |
a character The URL of the article. For example, "https://clearbit.com/blog/company-name-to-domain-api". |
A list persons data containing the: first_name,last_name,email,score,department,last_updated.
https://developer.tomba.io/#author-finder
## Not run: client <- Tomba(key="ta_xxxx",secret="ts_xxxx") result <- author_finder(client,url="https://clearbit.com/blog/company-name-to-domain-api") ## End(Not run)
## Not run: client <- Tomba(key="ta_xxxx",secret="ts_xxxx") result <- author_finder(client,url="https://clearbit.com/blog/company-name-to-domain-api") ## End(Not run)
Finder path
AUTHOR_PATH
AUTHOR_PATH
An object of class character
of length 1.
autocomplete
Company Autocomplete is an API that lets you auto-complete company names and retreive logo and domain information.
autocomplete(obj, search) ## S4 method for signature 'Tomba' autocomplete(obj, search)
autocomplete(obj, search) ## S4 method for signature 'Tomba' autocomplete(obj, search)
obj |
Tomba class |
search |
a character name company or website. |
A list autocomplete data containing the: Total email on company,company website and name and logo.
https://developer.tomba.io/#autocomplete
## Not run: client <- Tomba(key="ta_xxxx",secret="ts_xxxx") result <- autocomplete(obj,search="google") ## End(Not run)
## Not run: client <- Tomba(key="ta_xxxx",secret="ts_xxxx") result <- autocomplete(obj,search="google") ## End(Not run)
Autocomplete path
AUTOCOMPLETE_PATH
AUTOCOMPLETE_PATH
An object of class character
of length 1.
client
Tomba http Client
client(obj, path, query = NULL) ## S4 method for signature 'Tomba' client(obj, path, query = NULL)
client(obj, path, query = NULL) ## S4 method for signature 'Tomba' client(obj, path, query = NULL)
obj |
Tomba class |
path |
a character specific path. |
query |
a list for httr request query |
A list of http response
## Not run: client <- Tomba(key="ta_xxxx",secret="ts_xxxx") result <- client(obj,"https://api.tomba.io/v1/me",null) ## End(Not run)
## Not run: client <- Tomba(key="ta_xxxx",secret="ts_xxxx") result <- client(obj,"https://api.tomba.io/v1/me",null) ## End(Not run)
count
Returns total email addresses we have for one domain.
count(obj, domain) ## S4 method for signature 'Tomba' count(obj, domain)
count(obj, domain) ## S4 method for signature 'Tomba' count(obj, domain)
obj |
Tomba class |
domain |
a character Domain name from which you want to find the email addresses. For example, "stripe.com". |
A list domain count data containing the: Total email,Total personal email,Total generic email,Total email on department key_name.
https://developer.tomba.io/#email-count
## Not run: client <- Tomba(key="ta_xxxx",secret="ts_xxxx") result <- count(client,domain="tomba.io") ## End(Not run)
## Not run: client <- Tomba(key="ta_xxxx",secret="ts_xxxx") result <- count(client,domain="tomba.io") ## End(Not run)
Email Count path
COUNT_PATH
COUNT_PATH
An object of class character
of length 1.
DEFAULT BASE URL
DEFAULT_BASE_URL
DEFAULT_BASE_URL
An object of class character
of length 1.
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.
domain_search(obj, domain) ## S4 method for signature 'Tomba' domain_search(obj, domain)
domain_search(obj, domain) ## S4 method for signature 'Tomba' domain_search(obj, domain)
obj |
Tomba class |
domain |
Domain name from which you want to find the email addresses. For example, "stripe.com". |
A list domain data containing the organization name,country,social links, and list of emails.
https://developer.tomba.io/#domain-search
## Not run: client <- Tomba(key="ta_xxxx",secret="ts_xxxx") result <- domain_search(obj,domain="stripe") ## End(Not run)
## Not run: client <- Tomba(key="ta_xxxx",secret="ts_xxxx") result <- domain_search(obj,domain="stripe") ## End(Not run)
email_finder
Generates or retrieves the most likely email address from a domain name, a first name and a last name.
email_finder(obj, domain, fname, lname) ## S4 method for signature 'Tomba' email_finder(obj, domain, fname, lname)
email_finder(obj, domain, fname, lname) ## S4 method for signature 'Tomba' email_finder(obj, domain, fname, lname)
obj |
Tomba class |
domain |
a character domain name of the company, used for emails. For example, "asana.com". |
fname |
The person's first name. It doesn't need to be in lowercase.. |
lname |
The person's last name. It doesn't need to be in lowercase.. |
A list persons data containing the: first_name,last_name,email,score,department,last_updated.
https://developer.tomba.io/#email-finder
## Not run: client <- Tomba(key="ta_xxxx",secret="ts_xxxx") result <- email_finder(client,fname="FIRST_NAME",lname="LASST_NAME") ## End(Not run)
## Not run: client <- Tomba(key="ta_xxxx",secret="ts_xxxx") result <- email_finder(client,fname="FIRST_NAME",lname="LASST_NAME") ## End(Not run)
email_sources
Find email address source somewhere on the web.
email_sources(obj, email) ## S4 method for signature 'Tomba' email_sources(obj, email)
email_sources(obj, email) ## S4 method for signature 'Tomba' email_sources(obj, email)
obj |
Tomba class |
email |
a character email address you want to find sources. |
A list sources data data containing the: URL, URL extracted on and last seen on, check if the URL still on page (TRUE|FALSE).
https://developer.tomba.io/#email-sources
## Not run: client <- Tomba(key="ta_xxxx",secret="ts_xxxx") result <- email_sources(obj,email="[email protected]") ## End(Not run)
## Not run: client <- Tomba(key="ta_xxxx",secret="ts_xxxx") result <- email_sources(obj,email="[email protected]") ## End(Not run)
email_verifier
Verify the deliverability of an email address.
email_verifier(obj, email) ## S4 method for signature 'Tomba' email_verifier(obj, email)
email_verifier(obj, email) ## S4 method for signature 'Tomba' email_verifier(obj, email)
obj |
Tomba class |
email |
a character email address you want to verify. |
A list email data containing the: MX records,SMTP server accepts all,SMTP check,deliverability score,status of the email address,status of the verification.
https://developer.tomba.io/#email-verifier
## Not run: client <- Tomba(key="ta_xxxx",secret="ts_xxxx") result <- email_verifier(obj,email="[email protected]") ## End(Not run)
## Not run: client <- Tomba(key="ta_xxxx",secret="ts_xxxx") result <- email_verifier(obj,email="[email protected]") ## End(Not run)
Finder path
FINDER_PATH
FINDER_PATH
An object of class character
of length 1.
linkedin_finder
This API endpoint generates or retrieves the most likely email address from a Linkedin URL.
linkedin_finder(obj, url) ## S4 method for signature 'Tomba' linkedin_finder(obj, url)
linkedin_finder(obj, url) ## S4 method for signature 'Tomba' linkedin_finder(obj, url)
obj |
Tomba class |
url |
a character The URL of the Linkedin. For example, "https://www.linkedin.com/in/alex-maccaw-ab592978". |
A list persons data containing the: first_name,last_name,email,score,department,last_updated.
https://developer.tomba.io/#linkedin-finder
## Not run: client <- Tomba(key="ta_xxxx",secret="ts_xxxx") result <- linkedin_finder(client,url="httpshttps://www.linkedin.com/in/alex-maccaw-ab592978") ## End(Not run)
## Not run: client <- Tomba(key="ta_xxxx",secret="ts_xxxx") result <- linkedin_finder(client,url="httpshttps://www.linkedin.com/in/alex-maccaw-ab592978") ## End(Not run)
Finder path
LINKEDIN_PATH
LINKEDIN_PATH
An object of class character
of length 1.
logs
Returns a your last 1,000 requests you made during the last 3 months.
logs(obj) ## S4 method for signature 'Tomba' logs(obj)
logs(obj) ## S4 method for signature 'Tomba' logs(obj)
obj |
Tomba class |
A list requests data containing the: url and The User Agent and IP address associated with the Request,The cost false Free true 1 request,The date,The ISO 3166-1 alpha-2 country code.
https://developer.tomba.io/#logs
## Not run: client <- Tomba(key="ta_xxxx",secret="ts_xxxx") result <- logs(client) ## End(Not run)
## Not run: client <- Tomba(key="ta_xxxx",secret="ts_xxxx") result <- logs(client) ## End(Not run)
Logs path
LOGS_PATH
LOGS_PATH
An object of class character
of length 1.
phone_finder
Search phone are based on the email You give one email and it returns phone data.
phone_finder(obj, email) ## S4 method for signature 'Tomba' phone_finder(obj, email)
phone_finder(obj, email) ## S4 method for signature 'Tomba' phone_finder(obj, email)
obj |
Tomba class |
email |
a character The email address you want to find phone. |
A list phone data containing the: local_format,intl_format,country_code,line_type,carrier,timezones
https://developer.tomba.io/#phone-finder
## Not run: client <- Tomba(key="ta_xxxx",secret="ts_xxxx") result <- phone_finder(client,email="******@zapier.com") ## End(Not run)
## Not run: client <- Tomba(key="ta_xxxx",secret="ts_xxxx") result <- phone_finder(client,email="******@zapier.com") ## End(Not run)
Finder path
PHONE_PATH
PHONE_PATH
An object of class character
of length 1.
Search path
SEARCH_PATH
SEARCH_PATH
An object of class character
of length 1.
Email Sources path
SOURCES_PATH
SOURCES_PATH
An object of class character
of length 1.
status
Returns domain status if is webmail or disposable.
status(obj, domain) ## S4 method for signature 'Tomba' status(obj, domain)
status(obj, domain) ## S4 method for signature 'Tomba' status(obj, domain)
obj |
Tomba class |
domain |
a character Domain name from which you want to check. For example, "gmail.com". |
A list domain status data containing the: is webmail email service or is disposable email service
https://developer.tomba.io/#domain-status
## Not run: client <- Tomba(key="ta_xxxx",secret="ts_xxxx") result <- status(client,domain="gmail.com") ## End(Not run)
## Not run: client <- Tomba(key="ta_xxxx",secret="ts_xxxx") result <- status(client,domain="gmail.com") ## End(Not run)
Domain status path
STATUS_PATH
STATUS_PATH
An object of class character
of length 1.
Search emails are based on the website You give one domain name and it returns all the email addresses found on the internet. at https://tomba.io/
Abedrahim Ben rebia [email protected]
An S4 class The Tomba API Constructor
key
A character Tomba API KEY
secret
A character Tomba SECRET KEY
usage
Check your monthly requests.
usage(obj) ## S4 method for signature 'Tomba' usage(obj)
usage(obj) ## S4 method for signature 'Tomba' usage(obj)
obj |
Tomba class |
A list requests data containing the: usage of the domain,finder,verifier and source from: Website, Google Sheets add-on,api, browser extension, bulk tasks.
https://developer.tomba.io/#usage
## Not run: client <- Tomba(key="ta_xxxx",secret="ts_xxxx") result <- usage(client) ## End(Not run)
## Not run: client <- Tomba(key="ta_xxxx",secret="ts_xxxx") result <- usage(client) ## End(Not run)
Uage path
USAGE_PATH
USAGE_PATH
An object of class character
of length 1.
Verifier path
VERIFIER_PATH
VERIFIER_PATH
An object of class character
of length 1.