POST/v1/batch

Analyze multiple contents in a single request.

Business plan required

This endpoint is only available for B2B Business and Enterprise plans. Maximum 100 items per request.

Request

curl -X POST https://api.notron.eu/v1/batch \
  -H "X-API-Key: ntron_live_xxxxxxxx" \
  -H "Content-Type: application/json" \
  -d '{
    "items": [
      {"content": "https://suspicious-1.xyz"},
      {"content": "https://suspicious-2.xyz"},
      {"content": "+33612345678", "type": "phone"}
    ]
  }'

Request Body

itemsarrayrequired

List of contents to analyze (max 100)

Response

{
  "batch_id": "bat_abc123",
  "results": [
    {"index": 0, "verdict": "dangerous", "risk_score": 92},
    {"index": 1, "verdict": "safe", "risk_score": 12},
    {"index": 2, "verdict": "suspicious", "risk_score": 45}
  ],
  "summary": {"total": 3, "safe": 1, "suspicious": 1, "dangerous": 1}
}

© 2025 777 Industries SAS. All rights reserved.

Questions? api@notron.eu