/ Docs

AtData

Last updated November 27, 2025 · View as Markdown

Image 1 of 1 AtData provides tools to gain insights into the holder of an email address. In today's digital landscape, the email address plays a pivotal role in identifying individuals online, enabling precise and relevant approaches. AtData's email-focused database facilitates efficient use of digital channels to enhance customer interactions, offering valuable information about their activity.

AtData does not have a public API that reports PI. In this case, Relyance has a Static connection type that derives PI from the vendor API documentation.

In the Relyance AI application:

  1. Login to your Relyance account.
  2. Navigate to the Settings (bottom-left corner).
  3. Select Integrations.
  4. Search and locate the AtData integration card and click on it.
  5. Click on the Add Connection button on the top right
  6. Provide a meaningful name for the integration and click on the Add button
  7. In the Overview section, select the integration features you wish to enable for the integration, review the Scope and Permission, and Endpoint details and click on Continue. For more details, see Integration Features
  8. In the Connection section, provide the appropriate values and click on Continue,

Screenshot

Screenshot

  1. In the Authentication section, select Static and click on continue
  2. Review the configuration summary from the Completion section and click on Finish.
  3. Confirm the integration status reflects as Connected

Screenshot

Screenshot

Manage this integration with Terraform

Connections for this integration can be managed as code with the Relyance Terraform provider. 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.

resource "relyance_integration_connection" "atdata" {
  vendor = "atdata"
  name   = "<your connection name>"

  auth = {
    method = "no-credentials"
    params = {
      data_storage_location = "us"
    }
  }

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