← back
Documentation
Send a named message to any Robinhood-chain wallet. Fees in $HOOD cover the SMS protocol so messaging stays free onchain. Each message is backed by a stock.
How it works
1ComposeDisplay name, recipient 0x address, and message.
→
2SendNo wallet connect. Fees are paid from the treasury.
→
3DeliverA stock-backed transfer lands in their wallet with your message.
hoodsms is powered by a PONS coin backed by $HOOD. Fees in $HOOD cover the SMS protocol and keep messaging free on the blockchain. Each message is backed by a stock.
API
Base URL is this site. All amounts are in $HOOD.
POST/api/send-message
Queue a gasless message to a Robinhood-chain address.
{
"fromName": "alex",
"recipientAddress": "0x...",
"message": "gm"
}fromName — display name, max 40 charsrecipientAddress — EVM address on Robinhood chainmessage — message body
200 on success. 400 if a field is missing or the address is invalid.
GET/api/treasury
Treasury balance in $HOOD — protocol fees that keep messaging free.
{
"success": true,
"amount": 0.03,
"formatted": "0.03",
"symbol": "$HOOD"
}