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.

AgentWhat it's for
Aura AssistantEcosystem guide — what Aura is, what is live today, where to go next
MIRAIVirtual human — in-character conversation
Pons BotLaunch mechanics and the bonding curve on Robinhood Chain
Dev BotSDK 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

They do not invent contract addresses, prices, APYs, launch dates or audit results. They do not give financial advice. And they will never ask for a seed phrase or private key.

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.

1

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.

2

Describe your token. Name, ticker, description, image, and your X / Telegram links.

3

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.

4

Watch it graduate. Track your bonding curve on Explore, the token directory, then trade it.

Pons blocks embedding, so Aura always hands off in a new tab rather than nesting the launchpad inside our page. Your wallet submits every transaction on ponsfamily.com. The image cannot travel in a URL — re-attach it on the Pons form.
Launch a Token Explore tokens on Pons v2 ↗

Staking

Staking on this site is a browser-side simulation. There is no contract and no funds. It exists to show the intended mechanic — nothing you do there touches a blockchain.

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 periodMultiplier
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.

MethodEndpointDescription
GET/api/chatBackend status — whether a live model is attached, which one, and the available agents
POST/api/chatSend 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.

Other endpoints you may have seen documented elsewhere (/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.

ChannelOfficial
Websiteaurathecoin.com
X@aurathecoin1
Contract addressNot deployed yet
DiscordNone
The ticker is not unique — check the chain. $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.