Introduction
Everything you need to know to get started with NyxAi
💡 What is NyxAi?
NyxAi is an autonomous AI agent that monitors crypto markets 24/7, analyzes on-chain data, social signals, and price action to surface actionable intelligence.
Overview
NyxAi combines advanced neural networks with real-time blockchain data to give traders and researchers an edge in the fast-moving crypto market. Our AI agent operates autonomously, continuously scanning thousands of tokens across multiple chains.
Key Features
- Real-time Market Scanning — Monitors 3,800+ tokens across 12 chains
- AI-Powered Scoring — Proprietary momentum & sentiment scoring algorithm
- Instant Alerts — Get notified on whale movements, surging tokens, and risk events
- Natural Language Chat — Ask NyxAi anything about the market in plain English
- Risk Detection — Automatic flagging of suspicious contracts and rug pull patterns
- Daily Reports — Automated market insights delivered to your dashboard
How It Works
NyxAi ingests data from multiple sources:
- On-chain data — Transaction volumes, wallet flows, contract interactions
- Social signals — Twitter/X mentions, social media activity, community sentiment
- Price action — Technical indicators, order book depth, liquidity analysis
- Fundamental data — TVL changes, protocol revenue, developer activity
All data is processed through our neural network to produce actionable scores, alerts, and insights.
Architecture
Data Sources → Ingestion Layer → Neural Network → Scoring Engine
↓
Dashboard ← Alert System ← Risk Filter ← Output Layer
Quick Start
Get up and running with NyxAi in under 5 minutes
Step 1: Access the Dashboard
Navigate to the NyxAi Dashboard to access real-time market data, surging projects, and AI chat.
Step 2: Explore Surging Projects
The Surging Projects table shows tokens ranked by NyxAi's proprietary scoring algorithm. Each token has a momentum score (0-100) and a 1-day momentum visualization.
Step 3: Chat with NyxAi
Use the AI Chat panel to ask questions in natural language:
"What tokens are surging right now?"
"Analyze SOL ecosystem momentum"
"Any whale movements in the last hour?"
"Is $VIRTUAL a good entry right now?"
Step 4: Set Up Alerts
Configure alerts to get notified when NyxAi detects important market events. Alerts can be delivered via:
- Dashboard notifications
- Email (Pro plan)
- Webhook (Enterprise)
Step 5: API Integration
For programmatic access, use the NyxAi REST API:
curl -X GET "https://api.nyxai.tech/v1/surging" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json"
Core Concepts
Understand the building blocks of NyxAi intelligence
Momentum Score
Every token tracked by NyxAi receives a Momentum Score from 0-100. This score combines:
- Volume Delta (30%) — Change in trading volume vs 7-day average
- Social Sentiment (25%) — AI-analyzed sentiment from social platforms
- On-chain Activity (25%) — Wallet growth, whale accumulation, DEX activity
- Technical Momentum (20%) — RSI, MACD, and custom indicators
Risk Score
NyxAi automatically assigns risk levels to every token:
🟢 LOW (0-30) — Established project, verified contract, high liquidity
🟡 MED (31-60) — Some concerns, monitor closely
— Suspicious patterns detected, exercise extreme caution
Signal Types
NyxAi generates several types of signals:
SURGE — Token momentum exceeding threshold
WHALE — Large wallet movement detected
RISK — Suspicious activity flagged
TREND — Narrative or sector shift identified
BREAKOUT — Technical breakout pattern forming
Market Signals
How NyxAi detects and delivers market signals
Signal Pipeline
NyxAi processes over 50,000 data points per minute across multiple chains. Signals are generated when our AI detects statistically significant deviations from baseline patterns.
Supported Chains
- Ethereum & L2s (Arbitrum, Optimism, Base)
- Solana
- BNB Chain
- Avalanche
- Polygon
- Sui, Aptos, SEI
Signal Accuracy
Historical accuracy rates by signal type:
SURGE signals: 87.3% accuracy (30-day window)
WHALE signals: 92.1% accuracy (confirmed on-chain)
RISK signals: 94.7% accuracy (verified rug/exploit)
TREND signals: 78.5% accuracy (7-day narrative)
BREAKOUT signals: 81.2% accuracy (24h price action)
Alert System
Configure real-time notifications for market events
Alert Types
Set up alerts for any combination of signal types, tokens, chains, or custom conditions.
{
"type": "SURGE",
"sector": "AI",
"min_score": 90,
"channels": ["dashboard", "email"]
}
Delivery Channels
- Dashboard — Real-time push notifications (all plans)
- Email — Digest or instant (Pro plan)
- Webhook — Custom HTTP endpoint (Enterprise)
AI Chat
Natural language interface to crypto intelligence
Capabilities
NyxAi Chat understands natural language queries about:
- Token analysis and price action
- Market trends and narratives
- On-chain data and whale activity
- Risk assessment and contract analysis
- Historical patterns and comparisons
Example Queries
"What's the current sentiment on $SOL?"
"Show me the top gaining AI tokens today"
"Has there been any whale activity on PEPE?"
"Compare ETH vs SOL momentum this week"
"What are the riskiest tokens in my watchlist?"
Try it live on the Dashboard.
Risk Detection
Automated contract analysis and threat detection
What We Scan
- Contract Code — Honeypot detection, hidden mint functions, ownership risks
- Liquidity — Lock status, LP concentration, removal patterns
- Wallet Analysis — Insider wallets, connected deployer addresses, wash trading
- Social Signals — Bot activity detection, coordinated shilling patterns
⚠️ Disclaimer: NyxAi risk detection is for informational purposes only. Always do your own research (DYOR) before making investment decisions.
REST API
Programmatic access to NyxAi intelligence
Authentication
Authorization: Bearer YOUR_API_KEY
Endpoints
GET /v1/surging
Returns the current list of surging projects with scores and momentum data.
GET https://api.nyxai.tech/v1/surging
{
"data": [
{ "token": "VIRTUAL", "score": 97, "chain": "base" },
{ "token": "GRIFFAIN", "score": 94, "chain": "solana" }
]
}
GET /v1/token/:symbol
Returns detailed analysis for a specific token.
POST /v1/chat
Send a natural language query to NyxAi.
POST https://api.nyxai.tech/v1/chat
{ "message": "What AI tokens are surging?" }
WebSocket
Real-time streaming data connection
Connection
const ws = new WebSocket('wss://ws.nyxai.tech/v1/stream');
ws.onopen = () => {
ws.send(JSON.stringify({
type: 'subscribe',
channels: ['surging', 'alerts', 'whale']
}));
};
Event Types
signal.surge — New surging token detected
signal.whale — Whale movement alert
signal.risk — Risk flag raised
score.update — Score change for watched tokens
insight.daily — Daily market insight published
Webhooks
Receive NyxAi events at your HTTP endpoint
Setup
Configure a webhook URL in your dashboard settings. NyxAi will send POST requests with event data.
POST https://your-server.com/webhook/nyxai
{
"event": "signal.surge",
"token": "VIRTUAL",
"score": 97,
"chain": "base",
"timestamp": "2025-01-15T12:00:00Z"
}
🔒 Security: All webhook payloads include an X-NyxAi-Signature header for verification. Always validate signatures before processing events.