{
  "info": {
    "name": "Verifi.Email — mcp.ai",
    "description": "REST API for the Verifi.Email MCP. Set {{apiKey}} to a workspace key (sk_live_…) created at https://mcp.ai/settings/api-keys.",
    "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
  },
  "auth": {
    "type": "bearer",
    "bearer": [
      {
        "key": "token",
        "value": "{{apiKey}}",
        "type": "string"
      }
    ]
  },
  "variable": [
    {
      "key": "baseUrl",
      "value": "https://api.mcp.ai/api/verifi_email",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "verifi_email_check_domain_health",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/check/domain/health",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "check",
            "domain",
            "health"
          ]
        },
        "description": "Check a bare domain's SPF, DKIM, DMARC, and BIMI configuration and return protocol scores plus provider recommendations.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"domain\": \"\",\n  \"selector\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "verifi_email_validate_email",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/validate/email",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "validate",
            "email"
          ]
        },
        "description": "Validate one non-empty email address and return its overall validity plus syntax, MX, spoofing, and disposable-address signals.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"email\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "verifi_email_validate_emails",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/validate/emails",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "validate",
            "emails"
          ]
        },
        "description": "Validate 1-10 email address strings in one synchronous request and return one ordered result per input, including malformed strings as invalid results.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"emails\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}