Sha256: 9566e7e3d5a6e3324c59dc02fcd9aad195bd6d802213307b901d67409a67265c

Contents?: true

Size: 801 Bytes

Versions: 2

Compression:

Stored size: 801 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:
results = client.emails_and_contacts('outscraper.com')
```

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
outscraper-0.2.0 examples/Emails And Contacts.md
outscraper-0.1.4 examples/Emails And Contacts.md