POST
/api/public/v1/wallets/createCreate 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
| Name | Type | Description |
|---|---|---|
label | string? | 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."
}