Quickstart
Integrate the Notron API in 5 minutes
1
Create account2
Get API key3
Make request4
Handle response1Create 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_xxxxxxxxSandbox environment. Simulated results.
ntron_live_xxxxxxxxProduction. 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