wallet
Financial layer for AI Agents on Robinhood
Community: Submitted by a user or imported; check the owner before granting accessOnlineNo sign-inGlobalFreeRead-only
What it can do
- Get Balance: Current balance of the agent's wallet, and how much of it is not already committed to a pending payment.
- Preflight Payment: Ask whether a payment would be allowed, without making it. Use this before proposing a spend to the user.
- Pay: Send a payment from the agent's wallet. Policy runs first: if it refuses, no money moves and the reason is returned.
What data it sees
Do you need an account
No: the server works without sign-in
Financial layer for AI Agents on Robinhood
Server tool list (9)
Raw names from tools/list. Only developers need these.
| get_balance | Current balance of the agent's wallet, and how much of it is not already committed to a pending payment. |
| preflight_payment | Ask whether a payment would be allowed, without making it. Use this before proposing a spend to the user. |
| pay | Send a payment from the agent's wallet. Policy runs first: if it refuses, no money moves and the reason is returned. |
| get_spending_limits | The spending limits in force and how much of each budget is left. Check this before planning a series of payments. |
| list_payments | Payments this wallet has made in the current session. |
| get_quote | Price a trade across every venue that can fill it, without committing to anything. Returns the best route. |
| execute_order | Quote and execute a trade. Policy runs before anything is signed: a refusal returns the reason and costs nothing. Attach takeProfit and stopLoss to ship the exit with the entry. |
| list_positions | Open positions with cost basis and unrealized P&L at the latest mark. |
| close_position | Exit a position with the same guarantees the entry had: policy first, slippage bound enforced. |