{
  "info": {
    "name": "Easy Email Verification — mcp.ai",
    "description": "REST API for the Easy Email Verification 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/easy_email_verification",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "easy_email_verification_download_bulk_results",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/download/bulk/results",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "download",
            "bulk",
            "results"
          ]
        },
        "description": "Download the processed text or CSV result file for a completed bulk verification job.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"job_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "easy_email_verification_get_bulk_job_status",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/bulk/job/status",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "bulk",
            "job",
            "status"
          ]
        },
        "description": "Get the status, progress, and verification totals for one asynchronous bulk verification job.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"job_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "easy_email_verification_list_bulk_jobs",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/bulk/jobs",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "bulk",
            "jobs"
          ]
        },
        "description": "List all bulk verification jobs associated with the connected API key, including their current status and verification counts when available.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "easy_email_verification_upload_bulk_email_file",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/upload/bulk/email/file",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "upload",
            "bulk",
            "email",
            "file"
          ]
        },
        "description": "Upload a text or CSV file containing one email address per line and start an asynchronous bulk verification job. Processing consumes one verification credit per address.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"file\": {}\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "easy_email_verification_verify_emails",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/verify/emails",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "verify",
            "emails"
          ]
        },
        "description": "Verify between 1 and 50 email addresses synchronously and return deliverability details for each address. Each address consumes one verification credit.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"emails\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}