Skip to content

An Elixir Client Library for the rocketreach api (not official)

License

Notifications You must be signed in to change notification settings

nix2intel/ex_rocketreach

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ex_rocketreach

An Elixir client library for the RocketReach API, providing easy access to professional and company contact information.

Installation

Add ex_rocketreach to your list of dependencies in mix.exs:

def deps do
  [
    {:ex_rocketreach, "~> 0.1.2"}
  ]
end

Usage

Basic Setup

# Create a new client with your API key
client = RocketReach.new("your_api_key")

Person Lookup and Search

# Look up a person by parameters
{:ok, person} = RocketReach.lookup_person(client, %{
  email: "[email protected]"
})

# Search for people
{:ok, results} = RocketReach.search_people(client, %{
  query: %{
    current_employer: ["example.com"],
    management_levels: ["C-Level", "VP"]
  }
})

Company Information

# Look up company details
{:ok, company} = RocketReach.lookup_company(client, %{domain: "example.com"})

# Get company tech stack
{:ok, tech_stack} = RocketReach.get_company_tech_stack(client, "example.com")

Organization Structure

# Get company org chart
{:ok, org_chart} = RocketReach.get_org_chart(client, "example.com")

# Get leadership team
{:ok, leaders} = RocketReach.get_leadership_team(client, "example.com")

Features

  • Person lookup and search
  • Company information retrieval
  • Technology stack analysis
  • Organization structure mapping
  • Department-wise employee search
  • Leadership team identification
  • Bulk lookup operations

Documentation

Full documentation can be found at https://hexdocs.pm/ex_rocketreach.

Contributing

  1. Fork it
  2. Create your feature branch (git checkout -b feature/my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin feature/my-new-feature)
  5. Create new Pull Request

About

An Elixir Client Library for the rocketreach api (not official)

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages