Sha256: 213a92876c69f1ab3143ea74a6adccac484fd46836aec5bf6d598397cc664c64
Contents?: true
Size: 800 Bytes
Versions: 3
Compression:
Stored size: 800 Bytes
Contents
# Emails And Contacts Scraper With Ruby Allows finding email addresses, social links, and phones from domains via [Outscraper API](https://app.outscraper.com/api-docs#tag/Emails-and-Contacts). ## Installation Install the gem and add to the application's Gemfile by executing: ```bash bundle add outscraper ``` If bundler is not being used to manage dependencies, install the gem by executing: ```bash gem install outscraper ``` [Link to the Ruby package page](https://rubygems.org/gems/outscraper) ## Initialization ```ruby require 'Outscraper' client = Outscraper::Client.new('SECRET_API_KEY') ``` [Link to the profile page to create the API key](https://app.outscraper.com/profile) ## Usage ```ruby # Search contacts from website: result = client.emails_and_contacts('outscraper.com') ```
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
outscraper-0.1.3 | examples/Emails And Contacts.md |
outscraper-0.1.2 | examples/Emails And Contacts.md |
outscraper-0.1.1 | examples/Emails And Contacts.md |