Integrations · Python

FurlPay + Python SDK

pip install furlpay. Instantiate the client with your API key and create USDC payments, query balances and manage webhooks from Django, FastAPI or scripts.

Install

pip install furlpay

Quickstart

import furlpay

client = furlpay.FurlPay(api_key="fp_live_...")
payment = client.payments.create(amount=49.99, currency="USDC", chain="arbitrum")

What your agent gets

  • payments
  • wallets
  • webhooks
  • swaps

FAQ

Does it support async?

The client is synchronous by default; wrap calls in a thread executor for async frameworks, or use the REST API directly with httpx — the OpenAPI spec is published at furlpay.com/openapi.json.

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.