{
  "info": {
    "name": "DeBounce — mcp.ai",
    "description": "REST API for the DeBounce 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/debounce",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "debounce_get_account_balance",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/account/balance",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "account",
            "balance"
          ]
        },
        "description": "Return the connected DeBounce account's remaining validation-credit balance.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "debounce_get_api_usage",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/api/usage",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "api",
            "usage"
          ]
        },
        "description": "Return the aggregate number of DeBounce API validation calls in an inclusive date range.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"end_date\": \"\",\n  \"start_date\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "debounce_get_bulk_validation_status",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/bulk/validation/status",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "bulk",
            "validation",
            "status"
          ]
        },
        "description": "Check progress for a bulk validation list created through the DeBounce Bulk API and return its result download URL when available.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"list_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "debounce_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 email address with DeBounce and return its deliverability result, reason, and remaining credit balance. Basic validation consumes 1 credit. Profile-photo lookup can cost 1 additional cred",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"email\": \"\",\n  \"include_photo\": false,\n  \"detect_gsuite_accept_all\": false,\n  \"include_contact_enrichment\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}