{
  "info": {
    "name": "ApexVerify — mcp.ai",
    "description": "REST API for the ApexVerify 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/apexverify",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "apexverify_delete_batch",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/batch",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "batch"
          ]
        },
        "description": "Permanently delete one ApexVerify batch by its exact UUID. Deletion is irreversible and unavailable while the batch is processing; verify the target batch first and deliberately set confirm_deletion=t",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"batch_uuid\": \"\",\n  \"confirm_deletion\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "apexverify_export_batch_results",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/export/batch/results",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "export",
            "batch",
            "results"
          ]
        },
        "description": "Export a completed batch as structured JSON for analysis or as a downloadable XLSX workbook. This reads existing results and does not consume verification credits.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"format\": \"\",\n  \"batch_uuid\": \"\",\n  \"include_details\": false,\n  \"include_statistics\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "apexverify_get_account_credits",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/account/credits",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "account",
            "credits"
          ]
        },
        "description": "Return the connected ApexVerify account's available email and phone verification credit balances. Use this before any credit-consuming verification.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "apexverify_get_batch_details",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/batch/details",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "batch",
            "details"
          ]
        },
        "description": "Get an ApexVerify batch's status, metadata, parsed-content counts, estimated verification cost, parameters, and final statistics. Repeat this call to monitor preparation or verification.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"batch_uuid\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "apexverify_launch_batch_verification",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/launch/batch/verification",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "launch",
            "batch",
            "verification"
          ]
        },
        "description": "Launch paid verification for a prepared batch. This consumes the batch's estimated net email or phone credits and can fail when credits are insufficient. First inspect Get Batch Details and Get Accoun",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"batch_uuid\": \"\",\n  \"confirm_credit_spend\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "apexverify_list_batches",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/batches",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "batches"
          ]
        },
        "description": "List verification batches, optionally restricted by creation time, one offset-controlled page at a time.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"offset\": 0,\n  \"to_date\": \"\",\n  \"from_date\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "apexverify_normalize_email_or_phone_file",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/normalize/email/or/phone/file",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "normalize",
            "email",
            "or",
            "phone",
            "file"
          ]
        },
        "description": "Normalize email addresses or phone numbers from a line-delimited TXT file without performing verification or consuming verification credits.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"file\": {},\n  \"type\": \"\",\n  \"target_country\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "apexverify_prepare_batch",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/prepare/batch",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "prepare",
            "batch"
          ]
        },
        "description": "Start or repeat asynchronous parsing, deduplication, format cleanup, and verification-cost calculation for an uploaded batch. This idempotent action does not launch paid verification. Poll Get Batch D",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"batch_uuid\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "apexverify_upload_batch",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/upload/batch",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "upload",
            "batch"
          ]
        },
        "description": "Create an ApexVerify verification batch from a line-delimited TXT file. Uploading does not consume verification credits; verification starts only when the batch is launched separately.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"file\": {},\n  \"name\": \"\",\n  \"type\": \"\",\n  \"description\": \"\",\n  \"target_country\": \"\",\n  \"target_audience\": \"\",\n  \"remove_duplicate\": false,\n  \"target_objective\": \"\",\n  \"use_global_cache\": false,\n  \"use_account_cache\": false,\n  \"target_market_industry\": \"\",\n  \"max_global_cache_backoff\": 0,\n  \"max_account_cache_backoff\": 0,\n  \"remove_wrong_email_format\": false,\n  \"remove_wrong_phone_format\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "apexverify_verify_email_or_phone",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/verify/email/or/phone",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "verify",
            "email",
            "or",
            "phone"
          ]
        },
        "description": "Verify one email address or phone number in real time. This consumes the corresponding prepaid verification credit; cache hits may receive a partial refund. Check account credits first and deliberatel",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"type\": \"\",\n  \"unit\": \"\",\n  \"target_country\": \"\",\n  \"target_audience\": \"\",\n  \"target_objective\": \"\",\n  \"use_global_cache\": false,\n  \"use_account_cache\": false,\n  \"confirm_credit_usage\": false,\n  \"target_market_industry\": \"\",\n  \"max_global_cache_backoff\": 0,\n  \"max_account_cache_backoff\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}