Integrations · Python
FurlPay + OpenAI Agents SDK
Install furlpay-openai-agents and pass get_furlpay_tools() to your Agent. The tools are native function tools — balances, USDC transfers, swaps, fractional stock orders and x402 pay-per-call.
Install
pip install furlpay-openai-agentsQuickstart
from agents import Agent, Runner
from furlpay_openai_agents import get_furlpay_tools
agent = Agent(
name="Finance agent",
instructions="Manage the user's stablecoin wallet within policy.",
tools=get_furlpay_tools(),
)
result = await Runner.run(agent, "Send 25 USDC to 0xAbc… and show my portfolio.")What your agent gets
- get_balance
- send_stablecoin
- swap_tokens
- get_portfolio
- place_order
- pay_for_resource
FAQ
Do the tools work with handoffs?
Yes. They are plain function tools, so you can give a specialist payments agent the FurlPay tools and hand off to it from your triage agent.
All FurlPay integration packages are MIT-licensed and run in demo mode without an API key. Framework names are trademarks of their respective owners; FurlPay is not affiliated with or endorsed by them.