Dunmore

Transactions

Query payment transaction history via the Dunmore API.

View payment transactions for your project.

List Transactions

GET /api/projects/:projectId/transactions

Query Parameters

ParameterTypeDescription
statusstringFilter by status: verified, settled, failed
endpointIdstringFilter by endpoint
limitnumberResults per page (default: 50, max: 100)
offsetnumberPagination 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
}