Agent Validate Batch
Agent-First Batch Validation Endpoint. Accepts raw JSON array of email strings (up to 1,000 for LLM format, 100 for standard). No CSV parsing or multipart file uploads — AI agents cannot easily generate these. Query Parameters: format: "llm" returns ultra-minimal JSON, "standard" returns full details Example request body (format=llm): { "emails": ["a@b.com", "c@d.com", "e@f.com"] } Example LLM response (format=llm): { "results": [ {"status": "valid", "confidence": 0.98, "recommendation": "send"}, {"status": "invalid", "confidence": 0.10, "recommendation": "drop"}, {"status": "risky", "confidence": 0.45, "recommendation": "quarantine"} ], "total": 3, "processed": 3 } Authentication: API key via APIGatewayMiddleware (upstream) Use POST /v1/agent/validate/batch when you need this capability from your application or backend. It accepts a JSON request body. Query parameters are available for request scoping and filtering.
Endpoint
Use this full URL directly in server-side integrations, scripts, or internal tooling.
Authorization
This section explains how this endpoint should be called in the current API version.
Code examples
Start with curl, then use the language sample that matches your backend.
curl -X POST "https://api.dropfakes.com/api/v1/agent/validate/batch?format=standard" \
-H "Content-Type: application/json" \
-d '{
"emails": [
"person@example.com"
]
}'Parameters
Query string parameters and request body fields are listed together for faster scanning.
Success response
The primary success status for this operation is 200.
Error response
Use this example to handle validation and request errors safely on the client or backend.