Skip to main content
GET
/
api
/
v3
/
deposits
/
{depositId}
/
summary
Get Deposit Summary
curl --request GET \
  --url https://server.stage.overflow.co/api/v3/deposits/{depositId}/summary \
  --header 'x-api-key: <api-key>' \
  --header 'x-client-id: <api-key>'
{
  "data": {
    "contributions": {
      "count": 42,
      "feesInCents": 1450,
      "grossInCents": 50000,
      "totalInCents": 48550
    },
    "refunds": {
      "count": 42,
      "feesInCents": 1450,
      "grossInCents": 50000,
      "totalInCents": 48550
    },
    "chargebacks": {
      "count": 42,
      "feesInCents": 1450,
      "grossInCents": 50000,
      "totalInCents": 48550
    },
    "adjustments": {
      "count": 42,
      "feesInCents": 1450,
      "grossInCents": 50000,
      "totalInCents": 48550
    }
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.overflow.co/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

x-client-id
string
header
required

Client ID for API authentication

x-api-key
string
header
required

API Key for API authentication

Path Parameters

depositId
string
required

Response

data
object
required

Aggregated contribution, refund, chargeback, and adjustment totals for the deposit.