> ## 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.

# Get Deposit Summary

> Returns aggregated totals (contributions, refunds, chargebacks, adjustments) for the deposit. All monetary amounts are expressed in cents.



## OpenAPI

````yaml https://server.stage.overflow.co/api/docs/openapi.json get /api/v3/deposits/{depositId}/summary
openapi: 3.0.0
info:
  title: Overflow Open API
  description: |

    The documentation for the Overflow Open APIs.

    To access the OpenAPI spec in JSON/YAML format, navigate to:

    * `/api/docs/openapi.json`
    * `/api/docs/openapi.yaml`
  version: '3.0'
  contact: {}
servers:
  - url: https://server.stage.overflow.co
    description: API server
security: []
tags: []
paths:
  /api/v3/deposits/{depositId}/summary:
    get:
      tags:
        - Deposits
      summary: Get Deposit Summary
      description: >-
        Returns aggregated totals (contributions, refunds, chargebacks,
        adjustments) for the deposit. All monetary amounts are expressed in
        cents.
      operationId: OpenApiDepositsController_getDepositSummary
      parameters:
        - name: depositId
          required: true
          in: path
          schema:
            type: string
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetDepositSummaryResponse'
        '404':
          description: Deposit not found
      security:
        - ClientId: []
          ApiKey: []
components:
  schemas:
    GetDepositSummaryResponse:
      type: object
      properties:
        data:
          type: object
          properties:
            contributions:
              type: object
              properties:
                count:
                  type: number
                  description: Number of items in this bucket.
                  example: 42
                feesInCents:
                  type: number
                  description: Total fees for this bucket, in cents.
                  example: 1450
                grossInCents:
                  type: number
                  description: Total gross value for this bucket, in cents.
                  example: 50000
                totalInCents:
                  type: number
                  description: >-
                    Total net value for this bucket (gross minus fees), in
                    cents.
                  example: 48550
              description: Totals for contributions included in this deposit.
            refunds:
              type: object
              properties:
                count:
                  type: number
                  description: Number of items in this bucket.
                  example: 42
                feesInCents:
                  type: number
                  description: Total fees for this bucket, in cents.
                  example: 1450
                grossInCents:
                  type: number
                  description: Total gross value for this bucket, in cents.
                  example: 50000
                totalInCents:
                  type: number
                  description: >-
                    Total net value for this bucket (gross minus fees), in
                    cents.
                  example: 48550
              description: Totals for refunds included in this deposit.
            chargebacks:
              type: object
              properties:
                count:
                  type: number
                  description: Number of items in this bucket.
                  example: 42
                feesInCents:
                  type: number
                  description: Total fees for this bucket, in cents.
                  example: 1450
                grossInCents:
                  type: number
                  description: Total gross value for this bucket, in cents.
                  example: 50000
                totalInCents:
                  type: number
                  description: >-
                    Total net value for this bucket (gross minus fees), in
                    cents.
                  example: 48550
              description: Totals for chargebacks included in this deposit.
            adjustments:
              type: object
              properties:
                count:
                  type: number
                  description: Number of items in this bucket.
                  example: 42
                feesInCents:
                  type: number
                  description: Total fees for this bucket, in cents.
                  example: 1450
                grossInCents:
                  type: number
                  description: Total gross value for this bucket, in cents.
                  example: 50000
                totalInCents:
                  type: number
                  description: >-
                    Total net value for this bucket (gross minus fees), in
                    cents.
                  example: 48550
              description: Totals for adjustments included in this deposit.
          required:
            - contributions
            - refunds
            - chargebacks
            - adjustments
          description: >-
            Aggregated contribution, refund, chargeback, and adjustment totals
            for the deposit.
      required:
        - data
  securitySchemes:
    ClientId:
      type: apiKey
      in: header
      name: x-client-id
      description: Client ID for API authentication
    ApiKey:
      type: apiKey
      in: header
      name: x-api-key
      description: API Key for API authentication

````