> ## Documentation Index
> Fetch the complete documentation index at: https://docs.enrow.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Go

> Install and use the official Enrow Go SDK to find and verify emails and phone numbers from your Go applications

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](/authentication) and exposes typed helpers for the [Email Finder](/api-reference/email-finder/find-single), [Email Verifier](/api-reference/email-verifier/verify-single), and [Phone Finder](/api-reference/phone/find-single) endpoints.

<Warning>
  These SDKs are in early access and not yet published to package registries. Install from source via the GitHub repository linked below.
</Warning>

## Installation

```bash theme={null}
go get github.com/EnrowAPI/enrow-go
```

## GitHub

<a href="https://github.com/EnrowAPI/enrow-go" rel="nofollow">github.com/EnrowAPI/enrow-go</a>

## Quick Start

```go theme={null}
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](/api-reference/email-finder/find-single) endpoint and returns a search `id` you can use to [retrieve the result](/api-reference/email-finder/get-single-result). Each search consumes credits — see [Credits & billing](/credits-billing) for per-endpoint costs.

Refer to the <a href="https://github.com/EnrowAPI/enrow-go" rel="nofollow">GitHub repository</a> for full documentation and examples.

## Next steps

<CardGroup cols={2}>
  <Card title="Authentication" icon="key" href="/authentication">
    How to pass your API key in the x-api-key header.
  </Card>

  <Card title="Find an email" icon="envelope" href="/api-reference/email-finder/find-single">
    Search for a professional email address from a name and company.
  </Card>

  <Card title="Verify an email" icon="circle-check" href="/api-reference/email-verifier/verify-single">
    Check whether an email address is valid and deliverable.
  </Card>

  <Card title="Rate limits" icon="gauge-high" href="/rate-limits">
    Understand the API request limits before scaling up.
  </Card>
</CardGroup>
