cURL
curl --request GET \ --url https://api.stablepay.global/v2/transactions \ --header 'Authorization: Bearer <token>'
List transactions with filters
Documentation IndexFetch the complete documentation index at: https://docs.stablepay.global/llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: https://docs.stablepay.global/llms.txt
Use this file to discover all available pages before exploring further.
curl "https://api.stablepay.global/v2/transactions?page=1&limit=20" \ -H "Authorization: Bearer YOUR_API_KEY"
{ "success": true, "data": [ { "id": "txn_xyz789", "userId": "usr_abc123", "status": "completed", "depositNetwork": "polygon", "depositAsset": "USDC", "depositAmount": "100", "payoutAmountInr": "8407.75", "payoutStatus": "completed", "createdAt": "2025-06-15T10:30:00Z" } ], "pagination": { "page": 1, "limit": 20, "total": 50, "totalPages": 3 } }