# Read a DMARC aggregate report

**Use case:** 

Parse a receiver-formatted DMARC XML report into message volume, source IP, disposition, DKIM, SPF, policy, and failure fields.

## Input

```json
{
  "reports": [
    {
      "name": "Google report for sendgrid.net",
      "xml": "<feedback><report_metadata><org_name>google.com</org_name><email>noreply-dmarc-support@google.com</email><report_id>2026-09-01-google-sendgrid</report_id><date_range><begin>1788220800</begin><end>1788307199</end></date_range></report_metadata><policy_published><domain>sendgrid.net</domain><adkim>r</adkim><aspf>r</aspf><p>reject</p><sp>reject</sp><pct>100</pct></policy_published><record><row><source_ip>209.85.220.41</source_ip><count>24</count><policy_evaluated><disposition>none</disposition><dkim>pass</dkim><spf>pass</spf></policy_evaluated></row><identifiers><header_from>sendgrid.net</header_from><envelope_from>sendgrid.net</envelope_from></identifiers><auth_results><dkim><domain>sendgrid.net</domain><selector>s1</selector><result>pass</result></dkim><spf><domain>sendgrid.net</domain><scope>mfrom</scope><result>pass</result></spf></auth_results></record></feedback>"
    }
  ],
  "aggregateBySourceIp": false,
  "failOnInvalid": true,
  "maxItems": 100
}
```

## Output

```json
{
  "reporter": {
    "label": "Reporter",
    "format": "string"
  },
  "domain": {
    "label": "Domain",
    "format": "string"
  },
  "sourceIp": {
    "label": "Source IP",
    "format": "string"
  },
  "messageCount": {
    "label": "Messages",
    "format": "integer"
  },
  "disposition": {
    "label": "Disposition",
    "format": "string"
  },
  "dkimEvaluation": {
    "label": "DKIM",
    "format": "string"
  },
  "spfEvaluation": {
    "label": "SPF",
    "format": "string"
  },
  "dmarcPass": {
    "label": "DMARC pass",
    "format": "boolean"
  },
  "failureReasons": {
    "label": "Failure signals",
    "format": "array"
  },
  "periodEnd": {
    "label": "Period end",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [DMARC Aggregate Report Analyzer](https://apify.com/automation-lab/dmarc-aggregate-report-analyzer.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/automation-lab/dmarc-aggregate-report-analyzer.md) to learn more, explore other use cases, and run it yourself.


## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
This Task's input is already configured above — use it as-is rather than inventing a new one.

- **AI agents and MCP clients** — the [Apify MCP server](https://docs.apify.com/integrations/mcp.md) at `https://mcp.apify.com` (remote, streamable HTTP, OAuth on first use).
- **Agentic workflows and local Actor development** — [Agent Skills](https://apify.com/.well-known/agent-skills/index.json) with the [Apify CLI](https://docs.apify.com/cli/docs.md): `npm install -g apify-cli`, then `apify login`.
- **JavaScript/TypeScript projects** — the official [JS/TS client](https://docs.apify.com/api/client/js/docs.md): `npm install apify-client`.
- **Python projects** — the official [Python client](https://docs.apify.com/api/client/python/docs.md): `pip install apify-client`.
- **Any other language** — the [REST API](https://docs.apify.com/api/v2.md).

For full API examples (JavaScript, Python, CLI, MCP, OpenAPI), see this Task's Actor page: https://apify.com/automation-lab/dmarc-aggregate-report-analyzer.md

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).
