live · noxaportal.fun · chain 4663
NoxaPortal
noxaportal.fun
NoxaPortal

The NoxaPortal API for Noxa on Robinhood Chain.

Create a wallet, buy/sell/launch tokens, and subscribe to real-time launches and trades — one HTTP call. Custodial keys stored AES-256-GCM encrypted. No RPC, no signer, no infra.

Custodial wallets
POST once, get apiKey + address. Keys encrypted server-side.
One-call trades
Sign & broadcast buy / sell / launch from your bot.
Data API
ERC20 metadata, launches feed, live token reads.
Realtime SSE
Subscribe to new launches, trades, and account activity.

60-second quickstart

bash
# 1. Create a wallet
curl -X POST https://noxaportal.fun/api/public/v1/wallets/create

# 2. Fund the returned address with ETH on Robinhood Chain

# 3. Buy / sell / launch — one endpoint
curl -X POST https://noxaportal.fun/api/public/v1/tx/send \
  -H "x-api-key: nx_..." \
  -H "Content-Type: application/json" \
  -d '{"to":"0xNoxaRouter","data":"0x...","value":"10000000000000000"}'

# 4. Subscribe to new launches (SSE)
curl -N https://noxaportal.fun/api/public/v1/stream/launches

# 5. Subscribe to trades on a token
curl -N "https://noxaportal.fun/api/public/v1/stream/trades?token=0x..."

# 6. Subscribe to your wallet's activity
curl -N "https://noxaportal.fun/api/public/v1/stream/account?address=0x..."
Robinhood Chain
Chain ID 4663
RPC: https://rpc.mainnet.chain.robinhood.com
Noxa Fun factory
0xD9eC2db5f3D1b236843925949fe5bd8a3836FCcB
NoxaPortal is not affiliated with Robinhood or Noxa. Custodial keys are stored encrypted — treat this API as beta and don't park size you can't afford to lose.