Skip to main content

Installation

go get github.com/EnrowAPI/enrow-go

GitHub

github.com/EnrowAPI/enrow-go

Quick Start

package main

import "github.com/EnrowAPI/enrow-go"

func main() {
    client := enrow.New("YOUR_API_KEY")

    search, err := client.Email.Find(enrow.EmailFindParams{
        Fullname:      "Dwight Schrute",
        CompanyDomain: "dundermifflin.com",
    })

    fmt.Println(search.ID)
}
Refer to the GitHub repository for full documentation and examples.