Network: NED20 Mainnetdexned.com
Operational

DexNED Developer API

Build on NED20. Access pools, tokens, prices, swaps, and analytics via REST & WebSocket.

REST API

Get pools, pairs, prices, tokens, volume, TVL…

WebSocket

Live swaps & events stream in real-time.

Token List

Verified token registry (logo, links, decimals).

Introduction

DexNED API provides programmatic access to market data, pools, swaps, and verified token metadata on the NED20 network.

Use it to power wallets, explorers, analytics dashboards, and trading bots.

Authentication

Most read-only endpoints are public. Some advanced endpoints may require an API key (coming soon).

Public Endpoints
No authentication required
API Key Required
Coming Soon

Rate Limits

If you exceed limits, you'll receive HTTP 429. Use caching and exponential backoff.

60
req/min
10
req/sec burst
429
Too Many Requests

Error Format

{
  "error": "INVALID_REQUEST",
  "message": "Missing parameter: pair",
  "status": 400
}

REST Endpoints

Core

Analytics

WebSocket (Real-time)

WebSocket URL
wss://dexned.com/v1/ws
Available Channels
swaps
Live swaps
pools
Pool updates
prices
Price updates
Example Message
{
  "type": "swap",
  "pair": "NEDX/WNEDX",
  "amountIn": "12.5",
  "amountOut": "8.3",
  "tx": "0x...",
  "timestamp": 1730000000
}

Verified Token List (NEDScan Registry)

DexNED uses the official token registry. Verified tokens include logo, symbol, decimals, website, and social links.

Changelog

v1.1.0
Added candles endpoint
OHLCV data with multiple intervals
v1.0.0
Initial release
Core endpoints and WebSocket support

Support & Community