# RocketReach

![RocketReach-Logo.png](https://assets.relyanceuat.xyz/images/docs/6568532811277/6568440645389.png)
RocketReach is a demand generation platform that allows you to find email addresses, phone numbers and social media accounts from their database of 250 million professionals. It helps professionals identify prospects sales and recruiting.

In order to integrate RocketReach with Relyance AI you will need an **API Token**.

#### In RocketReach:

1. Login to your RocketReach account.
2. Click on your username in the top-right and select **Account**.
3. On the sidebar on the left click **API Usage and Settings**.
4. At the top there will be a field labeled **My API Key**. Copy the value to be used in Relyance AI.

![RocketReach-1.png](https://assets.relyanceuat.xyz/images/docs/6568532811277/6582176818957.png)

![RocketReach-2.png](https://assets.relyanceuat.xyz/images/docs/6568532811277/6582178222221.png)

#### In the Relyance AI application:

1. Login to your Relyance account.
2. Navigate to the **Settings** Menu in the bottom left-hand side.
3. Select **Integrations**.
4. Click on the **Vendor Integration** tab.
5. Find the **RocketReach** integration card and click it to open its connections.
6. Under **Authentication Method**, choose **Custom**.
8. Paste the **API key** into its respective field.

![RocketReach-3.png](https://assets.relyanceuat.xyz/images/docs/6568532811277/6582245926541.png)

The **Authentication** step asks for:

- **API Key**: required; held as a secret.

9. Click **Authenticate**.
10. At this point, you should see the following result on the Vendor Integrations page:

![RocketReach-4.png](https://assets.relyanceuat.xyz/images/docs/6568532811277/6582212257805.png)

11. Congratulations, you are now connected to **RocketReach**.

<!-- terraform-examples:begin (generated from the integration catalog; do not hand-edit) -->

## Manage this integration with Terraform

Connections for this integration can be managed as code with the [Relyance Terraform provider](https://registry.terraform.io/providers/Relyance/relyance/latest). Non-secret fields go in `auth.params`; secret fields go in `auth.secrets_wo`, which is write-only — never stored in Terraform state. Rotate secrets by bumping `auth.secrets_wo_version`.

```hcl
resource "relyance_integration_connection" "rocketreach" {
  vendor = "rocketreach"
  name   = "<your connection name>"

  auth = {
    method = "api-key"
    params = {
      data_storage_location = "us"
    }
    # Secret fields are write-only: sent to Relyance, never stored in state.
    secrets_wo = {
      api_key = var.rocketreach_api_key
    }
    secrets_wo_version = 1
  }

  scans = { "property-inspection" = { enabled = true } }
}
```

<!-- terraform-examples:end -->
