cd ../
api_documentation.md
v1.0.0

API_OVERVIEW

The NexusSwap API provides programmatic access to our non-custodial exchange infrastructure. Build custom trading interfaces, integrate swaps into your applications, or automate your trading strategies with our RESTful API.

NON_CUSTODIAL

Your keys, your coins

FAST

Average swap < 10 min

GLOBAL

180+ countries

DEV_FIRST

RESTful API + SDKs

// code_example
// Base URL
const API_BASE = "https://api.nexusswap.io/v1";

// All requests must include your API key
const headers = {
  "X-API-Key": "your_api_key_here",
  "Content-Type": "application/json"
};