Skip to content

kavin-kim-creator/rosud-examples

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

rosud-examples

Real-world examples for Rosud — USDC payment infrastructure for AI agents.

pip install rosud

Examples

Example Framework Description
basic/ Pure Python Simple payment, balance check
crewai/ CrewAI Multi-agent task with payments
openai-agents/ OpenAI Agents SDK Tool-calling payment agent
mcp/ MCP Server Claude desktop integration
typescript/ TypeScript SDK Node.js payment flow
webhooks/ FastAPI Real-time payment event handling

Quick Start

import rosud

client = rosud.Rosud(api_key="rosud_live_xxx")

# Agent pays for API call
payment = client.payments.create(
    amount=0.01,
    to="0xRecipientAddress",
    memo="gpt4_inference_fee"
)
print(payment.status)  # "confirmed"

Why Rosud?

AI agents need to pay each other autonomously — without human approval, without credit cards, without gas fee complexity.

Rosud provides:

  • ✅ USDC on Base L2 (fast, cheap)
  • ✅ Spend limits (agents can't go rogue)
  • ✅ MCP native (Claude integration in 1 line)
  • ✅ Webhook notifications
  • ✅ No crypto complexity for developers

Docs

rosud.com/docs

About

Examples: AI agent autonomous payments using Rosud SDK (LangChain, CrewAI, OpenAI Agents)

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors