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

> Returns a single refund 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/refunds/{refundId}
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/refunds/{refundId}:
    get:
      tags:
        - Refunds
      summary: Get Refund
      description: >-
        Returns a single refund by its id for the authenticated nonprofit. All
        monetary amounts are expressed in cents.
      operationId: OpenApiRefundsController_getRefundById
      parameters:
        - name: refundId
          required: true
          in: path
          schema:
            type: string
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetRefundResponse'
        '404':
          description: Refund not found
      security:
        - ClientId: []
          ApiKey: []
components:
  schemas:
    GetRefundResponse:
      type: object
      properties:
        data:
          type: object
          properties:
            id:
              type: string
              description: Refund id.
              example: 8810f34fd5061afeec3eab67
            contributionId:
              type: string
              description: Contribution id associated with the refund.
              example: 8810f34fd5061afeec3eab68
            status:
              type: string
              enum:
                - CANCELED
                - FAILED
                - PENDING
                - REQUIRES_ACTION
                - SUCCEEDED
              description: Refund status.
              example: SUCCEEDED
            reason:
              type: string
              enum:
                - DUPLICATE
                - EXPIRED_OR_UNCAPTURED_CHARGE
                - FRAUDULENT
                - REQUESTED_BY_CUSTOMER
              nullable: true
              description: Refund reason when provided by the processor.
              example: REQUESTED_BY_CUSTOMER
            amountInCents:
              type: number
              description: Gross refund amount in cents.
              example: 12500
            netValueInCents:
              type: number
              description: Net refund amount in cents.
              example: 12100
            feeValueInCents:
              type: number
              nullable: true
              description: Total refund fees in cents.
              example: 400
            processorRefundId:
              type: string
              description: Processor refund identifier.
              example: re_123456789
            depositId:
              type: string
              nullable: true
              description: Deposit id associated with the refund, when available.
              example: 8810f34fd5061afeec3eab69
            createdAt:
              type: string
              format: date-time
              description: Date the refund was created.
              example: '2026-05-19T00:00:00.000Z'
            updatedAt:
              type: string
              format: date-time
              description: Date the refund was last updated.
              example: '2026-05-20T00:00:00.000Z'
          required:
            - id
            - contributionId
            - status
            - reason
            - amountInCents
            - netValueInCents
            - feeValueInCents
            - processorRefundId
            - depositId
            - createdAt
            - updatedAt
          description: Refund.
      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

````