OutpayDocs
API reference

Payments

List payments belonging to the authenticated merchant.

GET /api/v1/payments

Authentication: bearer API key with the payments:read scope.

Query parameters

ParameterTypeDefaultDescription
limitinteger25Minimum 1, maximum 100.
statusstringunsetOne of paid, pending, failed, expired.
curl "$OUTPAY_API_BASE_URL/api/v1/payments?limit=25&status=paid" \
  -H "Authorization: Bearer $OUTPAY_API_KEY"

Response — 200 OK:

{
  "data": [
    {
      "id": "pay_9d21f7",
      "checkoutId": "chk_4f21a9c3b7e04d18",
      "status": "paid",
      "amount": "49.99",
      "currency": "USDC",
      "chain": "base",
      "txHash": "0xabc123...",
      "fromAddress": "0xCustomerAddress",
      "toAddress": "0xMerchantPayoutWallet",
      "confirmedAt": "2026-07-15T11:45:00.000Z",
      "createdAt": "2026-07-15T11:40:00.000Z"
    }
  ]
}

Results are ordered by confirmation time, falling back to creation time, most recent first, and capped by limit. This endpoint does not implement offset or cursor pagination — do not design a client SDK around a pagination contract this route does not expose.

Errors: 400 VALIDATION_FAILED, 401 INVALID_API_KEY, 403 FORBIDDEN, 429 PAYMENTS_LIST_RATE_LIMITED (120 requests/minute per merchant), 500 PAYMENTS_READ_FAILED.

On this page