Skip to main content
The official Enrow SDK for Go wraps the Enrow REST API so you can find and verify emails and phone numbers from your Go applications. It handles request signing with your API key and exposes typed helpers for the Email Finder, Email Verifier, and Phone Finder endpoints.
These SDKs are in early access and not yet published to package registries. Install from source via the GitHub repository linked below.

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)
}
The client.Email.Find call maps to the Find Single Email endpoint and returns a search id you can use to retrieve the result. Each search consumes credits — see Credits & billing for per-endpoint costs. Refer to the GitHub repository for full documentation and examples.

Next steps

Authentication

How to pass your API key in the x-api-key header.

Find an email

Search for a professional email address from a name and company.

Verify an email

Check whether an email address is valid and deliverable.

Rate limits

Understand the API request limits before scaling up.