SDKs & Libraries

Official and community libraries

SDKs coming soon

Official SDKs are in development. For now, use the REST API directly.

Official SDKs (coming)

Python

Soon
notron

Node.js

Soon
@notron/sdk

PHP

Soon
notron/notron-php

Go

Planned
github.com/notron/go

Python Example

import requests
import os

class NotronClient:
    def __init__(self):
        self.api_key = os.environ.get("NOTRON_API_KEY")
        self.base_url = "https://api.notron.eu"
    
    def check(self, content):
        response = requests.post(
            f"{self.base_url}/v1/check",
            headers={"X-API-Key": self.api_key},
            json={"content": content}
        )
        return response.json()

# Usage
client = NotronClient()
result = client.check("https://suspicious.xyz")
print(f"Verdict: {result['verdict']}")

OpenAPI Specification

Download our OpenAPI spec to generate clients in any language:

Download OpenAPI Spec

© 2025 777 Industries SAS. All rights reserved.

Questions? api@notron.eu