> ## Documentation Index
> Fetch the complete documentation index at: https://docs.reap.global/llms.txt
> Use this file to discover all available pages before exploring further.

# Get fiat deposit

> Retrieves a fiat deposit credited to an account, including the amount as received by the bank and the amount credited.



## OpenAPI

````yaml /api-reference/openapi.json get /fiat-deposits/{id}
openapi: 3.1.0
info:
  title: Reap API
  version: 1.0.0
  description: Reap platform API
servers:
  - url: https://sandbox.api.reap.global
    description: Sandbox
  - url: https://prod.api.reap.global
    description: Production
security:
  - bearerAuth: []
tags:
  - name: Accounts
  - name: Activities
  - name: Card Designs
  - name: Card Shipments
  - name: Card Transactions
  - name: Cards
  - name: Companies
  - name: Crypto Deposits
  - name: Disputes
  - name: Fiat Deposits
  - name: Fraud Alerts
  - name: Policies
  - name: Simulation
  - name: Users
  - name: Virtual Asset Postings
  - name: Virtual Assets
  - name: Webhooks
paths:
  /fiat-deposits/{id}:
    get:
      tags:
        - Fiat Deposits
      summary: Get fiat deposit
      description: >-
        Retrieves a fiat deposit credited to an account, including the amount as
        received by the bank and the amount credited.
      operationId: get_fiat-deposits
      parameters:
        - name: id
          in: path
          required: true
          schema:
            description: Fiat deposit ID
            type: string
            format: uuid
        - name: Reap-Version
          in: header
          required: true
          schema:
            type: string
            enum:
              - '2025-02-14'
            description: API version (YYYY-MM-DD)
            example: '2025-02-14'
      responses:
        '200':
          description: Fiat deposit resource
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/FiatDeposit'
        '404':
          description: Fiat deposit not found
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: object
                    properties:
                      code:
                        type: string
                        const: FIAT_DEPOSIT_NOT_FOUND
                      message:
                        type: string
                      detail:
                        anyOf:
                          - type: object
                            additionalProperties: {}
                          - type: 'null'
                    required:
                      - code
                      - message
                      - detail
                required:
                  - error
                title: FiatDepositNotFoundError
components:
  schemas:
    FiatDeposit:
      type: object
      properties:
        id:
          type: string
          format: uuid
          description: Unique fiat deposit identifier
        accountId:
          type: string
          format: uuid
          description: Account credited by the deposit
        transactionId:
          type: string
          examples:
            - 20240115HKHHXXXX000123456
          description: >-
            The bank's unique identifier for the incoming transfer. Use it to
            reconcile the deposit against a bank statement.
        status:
          type: string
          enum:
            - SETTLED
          description: Current deposit status
          example: SETTLED
        amount:
          type: number
          minimum: 0
          examples:
            - 100.5
            - 0
            - 1234.99
          description: Amount credited to the account balance
        currency:
          type: string
          examples:
            - USD
            - HKD
            - EUR
          description: Currency the credit was applied in
        originalAmount:
          type: number
          minimum: 0
          examples:
            - 100.5
            - 0
            - 1234.99
          description: Amount of the incoming transfer, as received by the bank
        originalCurrency:
          type: string
          examples:
            - USD
            - HKD
            - EUR
          description: >-
            Currency the transfer was sent in. Differs from `currency` when the
            transfer was converted on the way in; `amount` divided by
            `originalAmount` is the rate that was applied.
        senderName:
          anyOf:
            - type: string
            - type: 'null'
          examples:
            - MOON INC LIMITED
          description: Name of the sender, when the bank reported one
        reference:
          anyOf:
            - type: string
            - type: 'null'
          examples:
            - INV-2024-0142
          description: Reference the sender attached to the transfer, when present
        occurredAt:
          type: string
          examples:
            - '2024-01-15T10:30:00Z'
          description: ISO 8601 timestamp of when the bank received the transfer
        createdAt:
          type: string
          examples:
            - '2024-01-15T10:30:00Z'
          description: ISO 8601 timestamp of creation
        updatedAt:
          type: string
          examples:
            - '2024-01-15T10:35:00Z'
          description: ISO 8601 timestamp of last update
      required:
        - id
        - accountId
        - transactionId
        - status
        - amount
        - currency
        - originalAmount
        - originalCurrency
        - senderName
        - reference
        - occurredAt
        - createdAt
        - updatedAt
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: API key as Bearer token

````