live · noxaportal.fun · chain 4663
POST/api/public/v1/wallets/create

Create wallet

Provision a fresh custodial wallet on Robinhood Chain. Returns an apiKey (used to sign transactions) and the public address (fund this to trade). The private key is AES-256-GCM encrypted server-side and never leaves the server.

Parameters

NameTypeDescription
labelstring?Optional nickname, max 64 chars

Request

bash
curl -X POST https://noxaportal.fun/api/public/v1/wallets/create \
  -H "Content-Type: application/json" \
  -d '{"label":"my-sniper"}'

Response

json
{
  "apiKey": "nx_9f2a...48b1",
  "address": "0xAbCdEf0123456789...",
  "label": "my-sniper",
  "note": "Store apiKey securely — it's shown once and controls the wallet."
}