Quickstart

Integrate the Notron API in 5 minutes

1
Create account
2
Get API key
3
Make request
4
Handle response

1Create an account

Go to dashboard.notron.eu and create your account. You can start with the free plan to test the API.

2Get your API key

In your dashboard, go to "API Keys" section and generate a new key.

ntron_test_xxxxxxxx

Sandbox environment. Simulated results.

ntron_live_xxxxxxxx

Production. Real AI analysis.

Security

Never share your API keys. Store them in environment variables, never in client-side code.

3Make your first request

Use the /v1/check endpoint to analyze suspicious content.

curl -X POST https://api.notron.eu/v1/check \
  -H "X-API-Key: ntron_test_xxxxxxxx" \
  -H "Content-Type: application/json" \
  -d '{"content": "https://bnp-secure.xyz/login"}'

4Handle the response

Responsejson
{
  "id": "chk_abc123def456",
  "verdict": "dangerous",
  "risk_score": 92,
  "confidence": 0.95,
  "scam_type": "phishing",
  "threats": ["fake_domain", "brand_impersonation"],
  "recommendation": "Do not click. Fraudulent site.",
  "analysis_time_ms": 234
}
safe
Score 0-30
suspicious
Score 31-70
dangerous
Score 71-100

Next steps

© 2025 777 Industries SAS. All rights reserved.

Questions? api@notron.eu