NodeMatrix API
LIVE

API Documentation

Professional blockchain token analysis API. Build on-chain flows, deploy bots, and generate APIs - all without code. Built on Ethereum.

Base URL: https://api.nodematrix.one
API Key Configuration
Your API key is stored locally. Get your key from our plans page or .

Overview

The NodeMatrix API provides comprehensive token analysis through REST endpoints. All endpoints require authentication via API key.

Quick Start
$ curl -X POST https://api.nodematrix.one/api/v1/token/analyze \
  -H "X-API-Key: your-api-key" \
  -H "Content-Type: application/json" \
  -d '{"contract_address": "0x...", "chain": "eth"}'

Authentication

All API requests require an API key provided in the header.

Header Format
X-API-Key: your-api-key-here

Token Analysis

Comprehensive token analysis endpoints for security, market, and holder data.

POST /api/v1/token/analyze Complete Token Analysis

Performs comprehensive analysis including security, market data, holder analysis, wash trading detection, and more.

contract_address string
The token contract address to analyze
chain string
Blockchain network (eth, base, bsc, sol)

🧪 Test This Endpoint

{ "contract_address": "0x...", "chain": "eth" }
POST /api/v1/token/vector-scores NOX Scores Only

Fast endpoint that returns only numerical scores without detailed data. ~3-5 seconds response time.

Feature Analysis

Individual feature endpoints for specific analysis types. Faster and more cost-effective than full analysis.

POST /api/v1/features/security Security Analysis

Focuses exclusively on security-related metrics: contract verification, honeypot detection, ownership analysis, tax structure.

POST /api/v1/features/market Market Analysis

Analyzes market data: price, volume, liquidity pool size, market cap, price volatility.

POST /api/v1/features/holders Holder Analysis

Examines token holder distribution, concentration patterns, whale identification.

POST /api/v1/features/wash-trading Wash Trading Detection

Detects suspicious trading patterns and wash trading activities.

POST /api/v1/features/sniper-sellers Sniper/Seller Analysis

Analyzes early buyers (snipers) and large holder selling behavior.

User Management

Manage API keys, view usage statistics, and track recent calls.

GET /api/v1/user/stats Get User Statistics

Retrieve your API usage statistics including total calls, remaining quota, and usage breakdown.

GET /api/v1/user/keys List API Keys

Get a list of all your API keys with their status and usage information.

System

System endpoints for rate limits and health checks.

GET /api/v1/system/rate-limits Get Rate Limits

View current rate limit status and remaining quota.