VUZDevelopers

Get a payment page paid-checkouts/GMV time series

GET
/analytics/payment-pages/{pageId}/trend

Daily or weekly buckets (auto-selected by period length), reconciled from payment_checkouts.

X-Api-Key<token>

Business API key, e.g. vuz_ab12cdef... Created via Settings → Integrations → API Keys. Unlike partner keys, a public API key's STRING does not encode its environment — isolation instead comes from a completely separate sandbox database: a key minted on the Sandbox server (above) only ever reads/writes sandbox data and can never see or affect production, regardless of what the key looks like.

In: header

Path Parameters

pageId*string

PaymentPage id

Query Parameters

range?string

Time range for the summary/trend

Default"last30days"

Value in

  • "last7days"
  • "last30days"
  • "last3months"
  • "ytd"
  • "lastyear"
  • "custom"
startDate?string

Start date for custom range (ISO date string)

endDate?string

End date for custom range (ISO date string)

Response Body

application/json

curl -X GET "https://example.com/analytics/payment-pages/string/trend"
{  "pageId": "string",  "points": [    {      "date": "string",      "paidCount": 0,      "gmv": 0    }  ],  "granularity": "daily",  "currency": "ILS"}