remember_wallet
Save a user-confirmed Robinhood address label for this account. Does not establish real-world ownership.
Name a watched wallet
Save a user-confirmed Robinhood address label for this account. Does not establish real-world ownership.
Permission and calling convention
Required scope: monitors:write. This tool can change account-owned settings or prepare a request. Use only for an intentional user action.
This tool does not sign or broadcast a transaction. Check errors, source timestamps and explicit unavailable fields before using the result.
POST /api/tools/remember_wallet
Authorization: Bearer <ULTRON_ACCESS_KEY>
Content-Type: application/jsonInput schema
Inputs are validated against this current schema. Use exact values from live source results rather than substituting a ticker for a contract or a different chain.
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"address": {
"type": "string",
"pattern": "^0x[0-9a-fA-F]{40}$"
},
"label": {
"type": "string",
"minLength": 1,
"maxLength": 60
}
},
"required": [
"address",
"label"
],
"additionalProperties": false
}