EN RU UA
Desktop API Pricing Docs Get API Access
NOYTRIX API

Crypto Risk Intelligence API for serious products.

Integrate real-time scam detection, URL analysis, wallet checks, smart contract risk, token intelligence and phishing evidence into your own wallet, exchange, Telegram bot, dashboard or internal security system.

API keys Usage limits Risk scoring B2B-ready
POST /v1/scan
curl -X POST https://api.noytrixapp.com/v1/scan \
  -H "Content-Type: application/json" \
  -H "x-api-key: YOUR_API_KEY" \
  -d '{"input":"https://example.com","lang":"en"}'
{
  "ok": true,
  "kind": "url",
  "score": 92,
  "level": "danger",
  "verdict_en": "Danger",
  "evidence": [
    "Phishing pattern detected",
    "Wallet connection risk",
    "Suspicious domain signals"
  ],
  "api": {
    "version": "v1",
    "usage": {
      "used": 128,
      "limit": 10000,
      "left": 9872
    }
  }
}
USE CASES

Built for crypto products that need protection before users get hurt.

Use Noytrix API as a security layer inside your own workflow.

Wallets

Warn users before opening suspicious URLs, signing risky transactions or interacting with unknown contracts.

Exchanges

Enrich support, listing review, suspicious deposit flows and user-facing security checks.

Telegram Bots

Add instant scam checks to communities, private bots, trading groups and moderation systems.

Dashboards

Display risk scores, verdicts, source evidence and threat signals inside internal tools.

Browser Extensions

Scan websites in real time and show users risk warnings directly inside the browser.

Security Teams

Use Noytrix as an additional intelligence layer for phishing, wallets, contracts and token risk.

CAPABILITIES

One API for scam links, wallets, contracts, tokens and suspicious text.

Noytrix API returns structured risk data that your product can display, store, filter or use for automatic protection logic.

URL & domain scanningDetect phishing pages, fake wallet portals, suspicious redirects and risky page content.
Wallet & contract checksAnalyze EVM addresses, contract patterns, permissions and on-chain risk signals.
Token intelligenceSupport token/ticker analysis, external enrichment and risk classification.
Evidence-based responseReturn verdict, score, sources, evidence, worst-case explanation and usage data.
API key controlEach client receives a private key with plan limits, monthly usage tracking and revoke support.
Production limitsMonthly quotas and rate limits help keep integrations stable and protected.
API DOCUMENTATION

PRODUCTION-GRADE API DOCUMENTATION FOR REAL INTEGRATIONS.

Base URL: https://api.noytrixapp.com

Introduction

Noytrix API is a crypto risk intelligence layer for wallets, exchanges, Telegram bots, browser extensions, dashboards and internal security tools. It helps detect scam links, risky wallet flows, suspicious contracts, token risks and phishing patterns before users interact with dangerous infrastructure.

Quickstart

curl -X POST https://api.noytrixapp.com/v1/scan \
  -H "Content-Type: application/json" \
  -H "x-api-key: YOUR_API_KEY" \
  -d '{"input":"https://example.com","lang":"en"}'

Authentication

Every request must include your private API key. Never expose this key in frontend code.

x-api-key: YOUR_API_KEY

or

Authorization: Bearer YOUR_API_KEY

Endpoints

GET  /v1/me
POST /v1/scan

/v1/me checks key status, plan and usage. /v1/scan scans URLs, domains, wallets, contracts, tokens and text.

Request schema

{
  "input": "https://example.com",
  "lang": "en"
}
  • input — URL, domain, wallet, contract, token, ticker, text or transaction data.
  • lang — response language: en, ru or uk.

Response schema

{
  "ok": true,
  "kind": "url",
  "score": 30,
  "level": "suspicious",
  "verdict_en": "Suspicious",
  "sources": [],
  "evidence": [],
  "what_can_happen": "The interaction may be risky.",
  "worst_case": "A malicious flow may lead to fund loss.",
  "api": {
    "version": "v1",
    "plan": "starter",
    "usage": {
      "month": "2026-05",
      "used": 1,
      "limit": 10000,
      "left": 9999
    }
  }
}

Verdict levels

  • safe — no strong risk detected.
  • suspicious — warning signals exist.
  • danger — high-risk behavior detected.
  • critical — confirmed or severe scam risk.

Source statuses

  • clean — source did not detect risk.
  • malicious — source confirmed danger.
  • no_data — no final result available.
  • invalid_key — provider key not configured.
  • timeout — source did not respond in time.
  • error — source returned an error.

Error codes

{
  "ok": false,
  "error": "invalid_api_key",
  "message": "Invalid API key."
}
  • missing_api_key — API key header is missing.
  • invalid_api_key — key does not exist.
  • api_key_inactive — key was disabled.
  • api_key_expired — key expired.
  • monthly_limit_exceeded — monthly quota reached.
  • rate_limit_exceeded — too many requests per minute.
  • missing_input — request body has no input.

Rate limits

Starter: 10,000 requests / month · 60 requests / minute
Growth: 100,000 requests / month · 180 requests / minute
Scale: 500,000 requests / month · 600 requests / minute

Every successful response includes current usage inside api.usage.

SDK examples

// JavaScript
const res = await fetch("https://api.noytrixapp.com/v1/scan", {
  method: "POST",
  headers: {
    "Content-Type": "application/json",
    "x-api-key": process.env.NOYTRIX_API_KEY
  },
  body: JSON.stringify({ input: "https://example.com", lang: "en" })
});

const data = await res.json();
# Python
import os, requests

res = requests.post(
    "https://api.noytrixapp.com/v1/scan",
    headers={"x-api-key": os.getenv("NOYTRIX_API_KEY")},
    json={"input": "https://example.com", "lang": "en"}
)

data = res.json()

Security best practices

  • Store API keys only on your backend or server environment.
  • Do not expose API keys inside browser apps, mobile bundles or public repositories.
  • Use your own backend as a proxy if you need to call Noytrix from a frontend product.
  • Rotate compromised keys immediately.
  • Use usage monitoring to detect unexpected request spikes.
API PRICING

Choose the right API plan based on your product scale, traffic and security needs.

BASIC

Starter API

$19/ month

For MVPs, Telegram bots and early-stage crypto products that need real scam protection without complex infrastructure.

  • 10,000 API requests / month
  • 60 requests / minute
  • URL & domain scam detection
  • Phishing and fake website analysis
  • Structured risk score and verdicts
  • JSON API responses for automation
  • Fast integration for small teams
  • Email support
GET BASIC API
SCALE

Scale API

$300/ month

For exchanges, large products and production systems with heavy traffic, advanced workflows and enterprise-level security needs.

  • 500,000 API requests / month
  • 600 requests / minute
  • Everything in Growth
  • High-volume production usage
  • Advanced infrastructure stability
  • Priority processing pipeline
  • Best fit for exchanges & large apps
  • Highest-priority support flow
GET SCALE API