← 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

1Compose

Display name, recipient 0x address, and message.

2Send

No wallet connect. Fees are paid from the treasury.

3Deliver

A 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 chars
  • recipientAddress — EVM address on Robinhood chain
  • message — 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"
}