Skip to main content
Rhaios serves multiple machine-readable discovery surfaces so agents can find and use it without human intervention.

Discovery Endpoints

Install the Rhaios Skill

The fastest way to integrate is to install the agent skill:

OpenClaw

Claude Code

Or install via npm:

Agent-to-Agent Protocol (A2A)

Rhaios publishes a Google A2A Agent Card at /.well-known/agent.json. This declares:
  • Skills: what the agent can do (discover vaults, prepare intents, execute transactions, etc.)
  • Authentication: none required (non-custodial — agents bring their own signing keys)
  • Input/output modes: JSON over REST
  • Payment protocol: x402 (optional on staging)
Agents implementing the A2A protocol can discover Rhaios automatically.

Rate Limits

Free endpoints return X-RateLimit-* headers on every response:
Agents should check X-RateLimit-Remaining and back off when approaching zero. Paid endpoints (gated by x402) bypass rate limits.

Payment

Rhaios supports the x402 protocol for agent-native micropayments. When enabled, yield_prepare returns HTTP 402 with payment instructions that agents fulfill inline using stablecoins. On staging, x402 is not enforced — all endpoints are free for testing.

Integration Flow

Next Steps