API Integration Guide
USDC Transfers via API
Direct Transfer API
# First request - will return 402 Payment Required
curl -X POST https://402ify.com/api/v1/transfer \
-H "Content-Type: application/json" \
-d '{
"network": "base-sepolia",
"signature": "0x1234567890abcdef...",
"authorization": {
"from": "0xYOUR_WALLET",
"to": "0xRECIPIENT_WALLET",
"value": "1000000",
"validAfter": "0",
"validBefore": "9999999999",
"nonce": "0x1234567890abcdef..."
}
}'
# Response: HTTP 402 with x402 payment token
# Use x402-compatible client or add X-Payment header with payment proofTransfer Features
Creating PayGates
API Endpoint for PayGate Creation
PayGate Configuration Parameters
Parameter
Type
Description
File PayGates
PayGate Management API
List PayGates
Update PayGate
Delete PayGate
Accessing PayGates
Standard Payment Flow
Authentication-Required PayGates
Dashboard Analytics
Last updated