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

> Returns a single chargeback by its id for the authenticated nonprofit. All monetary amounts are expressed in cents.



## OpenAPI

````yaml https://server.stage.overflow.co/api/docs/openapi.json get /api/v3/chargebacks/{chargebackId}
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/chargebacks/{chargebackId}:
    get:
      tags:
        - Chargebacks
      summary: Get Chargeback
      description: >-
        Returns a single chargeback by its id for the authenticated nonprofit.
        All monetary amounts are expressed in cents.
      operationId: OpenApiChargebacksController_getChargebackById
      parameters:
        - name: chargebackId
          required: true
          in: path
          schema:
            type: string
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetChargebackResponse'
        '404':
          description: Chargeback not found
      security:
        - ClientId: []
          ApiKey: []
components:
  schemas:
    GetChargebackResponse:
      type: object
      properties:
        data:
          type: object
          properties:
            id:
              type: string
              description: Chargeback id.
              example: 8810f34fd5061afeec3eab67
            contributionId:
              type: string
              description: Contribution id associated with the chargeback.
              example: 8810f34fd5061afeec3eab68
            status:
              type: string
              enum:
                - lost
                - pending
                - won
              description: Chargeback status.
              example: pending
            type:
              type: string
              enum:
                - ach_return
                - dispute
              description: Chargeback type.
              example: dispute
            amountInCents:
              type: number
              description: Gross chargeback amount in cents.
              example: 12500
            netValueInCents:
              type: number
              nullable: true
              description: Net chargeback amount in cents.
              example: 12900
            feeValueInCents:
              type: number
              nullable: true
              description: Chargeback fee amount in cents.
              example: 400
            processorChargebackId:
              type: string
              description: Processor chargeback identifier.
              example: du_123456789
            reason:
              type: string
              nullable: true
              description: Chargeback reason when provided by the processor.
              example: Unauthorized transaction
            depositId:
              type: string
              nullable: true
              description: Deposit id associated with the chargeback, when available.
              example: 8810f34fd5061afeec3eab69
            createdAt:
              type: string
              format: date-time
              description: Date the chargeback was created.
              example: '2026-05-19T00:00:00.000Z'
            updatedAt:
              type: string
              format: date-time
              description: Date the chargeback was last updated.
              example: '2026-05-20T00:00:00.000Z'
          required:
            - id
            - contributionId
            - status
            - type
            - amountInCents
            - netValueInCents
            - feeValueInCents
            - processorChargebackId
            - reason
            - depositId
            - createdAt
            - updatedAt
          description: Chargeback.
      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

````