An Elixir client library for the RocketReach API, providing easy access to professional and company contact information.
Add ex_rocketreach
to your list of dependencies in mix.exs
:
def deps do
[
{:ex_rocketreach, "~> 0.1.2"}
]
end
# Create a new client with your API key
client = RocketReach.new("your_api_key")
# 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"]
}
})
# 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")
# 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")
- Person lookup and search
- Company information retrieval
- Technology stack analysis
- Organization structure mapping
- Department-wise employee search
- Leadership team identification
- Bulk lookup operations
Full documentation can be found at https://hexdocs.pm/ex_rocketreach.
- Fork it
- Create your feature branch (
git checkout -b feature/my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin feature/my-new-feature
) - Create new Pull Request