Transaction History
Retrieve a paginated list of all transactions.
Query Parameters
Number of transactions to return (max 100)
Number of transactions to skip
Filter by status: pending, completed, failed
Response
Array of transaction objects
Total number of transactions
Whether more transactions exist
curl "https://api.unipay.com/v1/transactions?limit=10&status=completed" \
-H "Authorization: Bearer YOUR_API_KEY"
{
"transactions": [
{
"transactionId": "tx_123",
"status": "completed",
"createdAt": "2026-04-22T12:00:00Z"
}
],
"total": 45,
"hasMore": true
}