PayNode Protocol Python SDK for AI Agents
Project description
PayNode Python SDK
The official Python SDK for the PayNode Protocol (v2.2.1). PayNode allows autonomous AI Agents to seamlessly pay for APIs and computational resources using USDC on Base L2, utilizing the standardized HTTP 402 protocol with support for both on-chain receipts and off-chain signatures (EIP-3009).
📖 Read the Docs
For complete installation guides, advanced usage, API references, and architecture details, please visit our official documentation: 👉 docs.paynode.dev
⚡ Quick Start
Installation
pip install paynode-sdk-python web3
Agent Client (Payer)
from paynode_sdk import PayNodeAgentClient
agent = PayNodeAgentClient(
private_key="YOUR_AGENT_PRIVATE_KEY",
rpc_urls=["https://mainnet.base.org", "https://rpc.ankr.com/base"]
)
# Automatically handles the 402 challenge, executes the Base L2 transaction, and gets the data.
response = agent.request_gate("https://api.merchant.com/premium-data", method="POST", json={"agent": "PythonAgent"})
print(response.json())
Key Features (v2.2.1)
- EIP-3009 Support: Sign payments off-chain using
TransferWithAuthorization, allowing for gasless or relayer-mediated settlement. - X402 V2 Protocol: JSON-based handshake for more structured and machine-readable payment instructions.
- Dual Flow: Automatic fallback to V1 (on-chain receipts) for legacy merchant support.
- FastAPI Middleware: Easy-to-use middleware for merchants to protect their API routes.
🗺️ Roadmap
- TRON Support: USDT (TRC-20) payment integration.
- Solana Support: SPL USDC/USDT payment integration.
- Cross-chain: Universal settlement via bridges.
🚀 Run the Demo
The SDK includes a complete Merchant/Agent demo in the examples/ directory.
1. Setup Environment
Copy the example environment file and fill in your keys:
cp .env.example .env
# Edit .env with your private key and RPC URLs
2. Get Test Tokens (Required for Base Sepolia)
If you're testing on Sepolia, run the helper script to mint 1,000 mock USDC:
python examples/mint_test_tokens.py
3. Run the Merchant Server (FastAPI)
python examples/fastapi_server.py
4. Run the Agent Client
In another terminal:
python examples/agent_client.py
The demo will perform a full loop: 402 Handshake -> On-chain Payment -> 200 Verification.
📦 Publishing to PyPI
To publish a new version of the SDK:
- Install build tools:
pip install build twine
- Build the package:
python -m build
- Upload to PyPI:
python -m twine upload dist/*
Built for the Autonomous AI Economy by PayNodeLabs.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file paynode_sdk_python-2.5.1.tar.gz.
File metadata
- Download URL: paynode_sdk_python-2.5.1.tar.gz
- Upload date:
- Size: 32.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
dd865af2c7395242d43d01c2c53131838efab76b5663237dc4a188891eb1fffe
|
|
| MD5 |
019b4357bd2d3acff3da09d936020120
|
|
| BLAKE2b-256 |
a52bfdbeb8cf69149737bb5585460b96b488f287212c1c4c486fb17966665313
|
File details
Details for the file paynode_sdk_python-2.5.1-py3-none-any.whl.
File metadata
- Download URL: paynode_sdk_python-2.5.1-py3-none-any.whl
- Upload date:
- Size: 27.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c81971a434d779e57f5c42d4d55218c6ae30c5a4a147557e59bb187c6a203326
|
|
| MD5 |
3f8f693cc1be02416e913dd0cdc03b70
|
|
| BLAKE2b-256 |
1445ce889575c688d733416498ef4eddee0c0fa458fd1dc0d2c1c14db491ff7b
|