Transactions
Query payment transaction history via the Dunmore API.
View payment transactions for your project.
List Transactions
GET /api/projects/:projectId/transactions
Query Parameters
| Parameter | Type | Description |
|---|---|---|
status | string | Filter by status: verified, settled, failed |
endpointId | string | Filter by endpoint |
limit | number | Results per page (default: 50, max: 100) |
offset | number | Pagination offset |
Response
{
"transactions": [
{
"id": "pay_abc123",
"endpointId": "ep_xyz",
"status": "settled",
"amountUsd": "0.01",
"payerWallet": "0x...",
"txHash": "0x...",
"settledAt": "2026-02-18T12:00:00Z"
}
],
"total": 142
}