Aura Docs
Aura is the agentic app store on Robinhood Chain. Two things work today — talk to AI agents, and take a token to a launch. This page documents those, plus what is still a preview.
Transactions are always signed in your own wallet. Aura and Pons never take custody of your assets.
Chat with agents
Aura runs four AI personas. Pick one in the left column of the chat page and talk — replies stream in live, one token at a time.
| Agent | What it's for |
|---|---|
Aura Assistant | Ecosystem guide — what Aura is, what is live today, where to go next |
MIRAI | Virtual human — in-character conversation |
Pons Bot | Launch mechanics and the bonding curve on Robinhood Chain |
Dev Bot | SDK and documentation questions |
No wallet is required to chat. Open the page and type — connecting a wallet only changes the header, it is not needed for the agents.
Deep link to one agent
Append ?agent= with the agent's exact name:
https://aurathecoin.com/app/chat?agent=MIRAI
Valid names are Aura Assistant, MIRAI, Pons Bot and Dev Bot. An unrecognised name falls back to the default agent.
What the agents will not do
Launch a token
From zero to your own token in four steps. The deployment runs on Pons v2, the launchpad and DEX on Robinhood Chain.
Connect a wallet. Open the Aura Launch page and connect your Robinhood Wallet or MetaMask. The Launch button stays disabled until a wallet is connected and a name and ticker are filled in.
Describe your token. Name, ticker, description, image, and your X / Telegram links.
Hit Launch Token. Aura hands you off to the Pons v2 create page, carrying your details across in the URL. The token is deployed on Robinhood Chain — launch fee 0.0005 ETH, V2 bonding-curve model, 0% creator fee.
Watch it graduate. Track your bonding curve on Explore, the token directory, then trade it.
Staking
Connect a wallet, pick a lock period, and stake from a demo balance of 1000 $AURA. Every number is computed in your browser and kept in localStorage, so your positions survive a refresh but live only on your device.
| Lock period | Multiplier |
|---|---|
| 30 days | ×1 |
| 90 days | ×1.2 |
| 180 days | ×1.5 |
| 240 days | ×1.7 |
| 360 days | ×2 |
Effective stake is amount × multiplier — that is what the reward accrues on. Rewards tick every second at a deliberately accelerated rate so you can watch the number move; the page says so on screen.
No transaction is ever signed on this page. If you are looking for staking with real funds, it does not exist yet.
API
One endpoint is public. All responses are JSON, and the upstream model key lives server-side — the browser never sees it.
| Method | Endpoint | Description |
|---|---|---|
GET | /api/chat | Backend status — whether a live model is attached, which one, and the available agents |
POST | /api/chat | Send a message, receive a streamed reply |
GET /api/chat
{
"live": true,
"model": "deepseek-flash",
"agents": ["Aura Assistant", "MIRAI", "Pons Bot", "Dev Bot"]
}
When live is false the chat page falls back to canned replies and says so in the header.
POST /api/chat
Send the agent name and the conversation so far. The response is a text/event-stream:
curl -N -X POST https://aurathecoin.com/api/chat \
-H 'Content-Type: application/json' \
-d '{"agent":"Aura Assistant","messages":[{"role":"user","content":"What can Aura do?"}]}'
data: {"delta":"Aura is "}
data: {"delta":"the agentic app store "}
data: {"delta":"on Robinhood Chain."}
data: {"done":true,"model":"deepseek-flash"}
Requests are rate limited per IP and against a global daily cap. A blocked request returns 429 with a human-readable hint and a retry delay — the limit is checked before the model is called, so a blocked request costs nothing.
/api/agents, /api/tokens, /api/launch) were never built. They return 404. If it is not on the table above, it does not exist.Official channels
Only the channels below are Aura. Anything else claiming to be us is not.
| Channel | Official |
|---|---|
| Website | aurathecoin.com |
| X | @aurathecoin1 |
| Contract address | Not deployed yet |
| Discord | None |
$AURA is used by several unrelated projects, most notably Aura Finance, a Balancer-based DeFi protocol on Ethereum. Aura (this project) is on Robinhood Chain and has no token live anywhere.We will publish the contract address here and on X before anything is tradable. Anything presenting itself as an Aura contract before that is not ours. There is no Aura Discord, and no one from Aura will ever DM you first.