Skip to main content
GET
/
v1
/
merchants
/
stats
curl -X GET https://api.delegare.dev/v1/merchants/stats \
  -H "X-Delegare-Merchant-Id: your_merchant_id" \
  -H "X-Delegare-Api-Key: your_api_key"
{
  "totalVolumeCents": 150450,
  "activeDelegates": 42,
  "transactionCount": 128
}
Get high-level statistics about your merchant account, including total processed volume and active spending delegates.

Headers

X-Delegare-Merchant-Id
string
required
Your merchant identifier.
X-Delegare-Api-Key
string
required
Your merchant API key.

Response

totalVolumeCents
integer
The total volume processed by your merchant account in cents (USD).
activeDelegates
integer
The current number of active spending delegates connected to your merchant account.
transactionCount
integer
The total number of successful transactions.
curl -X GET https://api.delegare.dev/v1/merchants/stats \
  -H "X-Delegare-Merchant-Id: your_merchant_id" \
  -H "X-Delegare-Api-Key: your_api_key"
{
  "totalVolumeCents": 150450,
  "activeDelegates": 42,
  "transactionCount": 128
}