Skip to content

Get email authentication results

GET
/api/v1/messages/{id}/auth

Parses authentication-related headers from the raw message and returns structured DKIM, SPF, DMARC, and ARC results. Reads Authentication-Results, DKIM-Signature, Received-SPF, and ARC-Authentication-Results headers. Does not perform cryptographic validation — it displays what upstream mail servers have already verified.

Responses

Parsed authentication results

application/json
JSON
{
  
"dkim": [
  
  
{
  
  
  
"status": "pass",
  
  
  
"details": "dkim=pass header.d=example.com header.s=selector1"
  
  
}
  
],
  
"spf": [
  
  
{
  
  
  
"status": "pass",
  
  
  
"details": "dkim=pass header.d=example.com header.s=selector1"
  
  
}
  
],
  
"dmarc": [
  
  
{
  
  
  
"status": "pass",
  
  
  
"details": "dkim=pass header.d=example.com header.s=selector1"
  
  
}
  
],
  
"arc": [
  
  
{
  
  
  
"status": "pass",
  
  
  
"details": "dkim=pass header.d=example.com header.s=selector1"
  
  
}
  
]
}

Playground

Samples

Powered by VitePress OpenAPI

Released under the MIT / Apache 2.0 License.