Skip to content

Dashboard — Overview & Transactions

Merchant dashboard aggregation endpoints. Requires the x-wallet header.


Overview

GET /api/overview

Returns merchant overview data (aggregate statistics such as total transaction volume, transaction count, etc.).

curl -H "x-wallet: 0xYourWallet" https://api.cyberpay.org/api/overview

Response

Returns database aggregation results; specific fields depend on the implementation.


Transactions

GET /api/transactions

Returns the merchant's transaction history list.

curl -H "x-wallet: 0xYourWallet" https://api.cyberpay.org/api/transactions

Response

[
  {
    "id": "uuid-xxx",
    "wallet_address": "0xYourWallet",
    "tx_type": "payment",
    "amount": "50000000",
    "token": "USDC",
    "network": "eip155:8453",
    "status": "completed",
    "tx_hash": "0xabc123...",
    "counterparty": null,
    "description": "PayLink: Premium Plan",
    "created_at": "2026-03-23T12:00:00Z"
  }
]