Popularity
0.6
Stable
Activity
0.0
Stable
1
1
0

Programming language: Crystal
License: MIT License
Tags: HTTP     Third-party APIs     API    

hunter.cr alternatives and similar shards

Based on the "Third-party APIs" category.
Alternatively, view hunter.cr alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of hunter.cr or a related project?

Add another 'Third-party APIs' Shard

README

hunter.cr

Build Status Docs License

A Crystal-Lang wrapper for Hunter.io API V2

Installation

  1. Add this to your application's shard.yml:
dependencies:
  hunter:
    github: arubinofaux/hunter.cr
  1. Run shards install

Usage

Setup Work

require "hunter"

client = Hunter.new(api_key)

Domain Search

client.domain.search(domain: "intercom.io", type: "personal")

Email Finder

client.email.finder(domain: "asana.com", first_name: "Dustin", last_name: "Moskovitz")

Email Verifier

client.email.verifier(email: "[email protected]")

Email Count

client.email.count(domain: "intercom.io")

Account Information

client.account

Service Status

client.status

Todo

  • [x] - Domain Search
  • [x] - Email Finder
  • [x] - Email Verifier
  • [x] - Email Count
  • [x] - Account Information
  • [x] - Service Status
  • [x] - Leads
    • [x] - List all
    • [x] - Retrieve
    • [x] - Create
    • [x] - Update
    • [x] - Delete
  • [x] - Leads Lists
    • [x] - List all
    • [x] - Retrieve
    • [x] - Create
    • [x] - Update
    • [x] - Delete

Development

For development you will need API Credentials from Hunter.io

If you found a bug in the library or would like new features added, go ahead and open issues or pull requests against this repo!

Contributing

  1. Fork it (https://github.com/arubinofaux/hunter.cr/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

Contributors


*Note that all licence references and agreements mentioned in the hunter.cr README section above are relevant to that project's source code only.