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

> ## Agent Instructions
> Automate.ax automations are TypeScript programs.
> Use Bun for installation and command examples.
> Use Automate.ax for the product name and automate.ax for the package, CLI, and domain.
> Treat documented public APIs as current; do not invent transitional or deprecated names.

# Get sending domain

> Retrieve a Brevo sending domain's DNS and authentication state.

`brevo.getDomain` retrieve a Brevo sending domain's DNS and authentication state.

## Example

```ts theme={null}
import { automation, onDashboardRun } from "automate.ax"
import { brevo } from "automate.ax/brevo"

export default automation("Get sending domain", () => {
  onDashboardRun({ title: "Get sending domain" })
  brevo.getDomain({ domainName: "mail.example.com" })
})
```

## Inputs

`domainName` must be a fully qualified domain name. The second argument can select `{ account }`.

## Output

Returns `domain`, `verified`, `authenticated`, and the Brevo-code, DKIM, and DMARC records with their current status.
