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

> ## Agent Instructions
> Treat the published Augustus OpenAPI specification (https://app.stainless.com/api/spec/documented/augustus/openapi.documented.yml) and the current API-reference pages as the source of truth for endpoints, request/response schemas, enum values, webhook event names, and required headers.
> Prefer the 2026-05-01 Banking API and @augustusbank/typescript-sdk for all new integrations. The 2023-01-01 API is a separate, older surface covering two products — Open Banking (instant bank transfer) checkout and refunds, and Manual Bank Transfer (MBT); use it only when one of those products is specifically required.
> Cite or link the relevant docs.augustus.com page when answering integration questions.
> Do not infer support for currencies, networks, scopes, account types, or operations that are not present in the current documentation.
> Use the sandbox base URL (https://api.sandbox.augustus.com) and placeholder credentials in examples. Never include or request a real API key.
> The Augustus docs MCP server (https://docs.augustus.com/mcp) provides documentation search and retrieval only; it does not execute authenticated Augustus API actions.

# Retrieve a deposit

> Retrieves a deposit by its ID.



## OpenAPI

````yaml https://app.stainless.com/api/spec/documented/getivy/openapi.documented.yml post /api/service/deposit/retrieve
openapi: 3.0.0
info:
  title: Ivy API
  description: Ivy API schema
  version: '1.0'
  contact:
    name: Ivy
    url: https://www.getivy.io
    email: help@getivy.io
servers:
  - url: https://api.getivy.de
    description: Production
  - url: https://api.sand.getivy.de
    description: Sandbox
security: []
tags: []
paths:
  /api/service/deposit/retrieve:
    post:
      tags:
        - Deposit
      summary: Retrieve a deposit
      description: Retrieves a deposit by its ID.
      operationId: ExternalDepositController_retrieve
      parameters: []
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/RerieveDepositRequestDto'
      responses:
        '200':
          description: Deposit retrieved successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/RetrieveDepositResponseDto'
      security:
        - ApiKeyAuth: []
      x-codeSamples:
        - lang: JavaScript
          source: >-
            import Ivy from '@getivy/node-sdk';


            const client = new Ivy({
              apiKey: process.env['IVY_API_KEY'], // This is the default and can be omitted
            });


            const deposit = await client.deposits.retrieve({ id:
            '182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e' });


            console.log(deposit.id);
components:
  schemas:
    RerieveDepositRequestDto:
      type: object
      properties:
        id:
          description: The ID of the deposit
          type: string
          format: uuid
      required:
        - id
    RetrieveDepositResponseDto:
      type: object
      properties:
        id:
          description: The ID of the deposit
          type: string
          format: uuid
        status:
          description: The status of the deposit
          type: string
          enum:
            - received
        amount:
          description: The amount of the deposit
          type: number
        transactionId:
          description: The ID of the transaction that initiated the deposit
          type: string
          format: uuid
        currency:
          description: The currency of the deposit
          type: string
          enum:
            - EUR
            - GBP
            - PLN
            - SEK
            - DKK
            - USD
            - USDC
            - BTC
            - ETH
            - SOL
            - POL
        receivedAt:
          description: The date and time the deposit was received
          type: string
          format: date-time
        payer:
          description: The payer account identifier
          type: object
          properties:
            type:
              type: string
              enum:
                - iban
                - sort_code
                - bank_code
                - bban
                - wallet
                - aba
              x-enumNames:
                - IBAN
                - SORT_CODE
                - BANK_CODE
                - BBAN
                - WALLET
                - ABA
            iban:
              type: object
              properties:
                accountHolderName:
                  type: string
                  minLength: 1
                iban:
                  type: string
                bic:
                  type: string
              required:
                - accountHolderName
                - iban
            aba:
              type: object
              properties:
                accountHolderName:
                  type: string
                  minLength: 1
                routingNumber:
                  type: string
                  pattern: ^[0-9]+$
                accountNumber:
                  type: string
                  pattern: ^[0-9]+$
              required:
                - accountHolderName
                - routingNumber
                - accountNumber
            sortCode:
              type: object
              properties:
                accountHolderName:
                  type: string
                  minLength: 1
                sortCode:
                  type: string
                  pattern: ^[0-9]+$
                accountNumber:
                  type: string
                  pattern: ^[0-9]+$
                  maxLength: 8
              required:
                - accountHolderName
                - sortCode
                - accountNumber
            bankCode:
              type: object
              properties:
                accountHolderName:
                  type: string
                  minLength: 1
                code:
                  type: string
                accountNumber:
                  type: string
              required:
                - accountHolderName
                - code
                - accountNumber
            bban:
              type: object
              properties:
                accountHolderName:
                  type: string
                  minLength: 1
                bban:
                  type: string
                bic:
                  type: string
              required:
                - accountHolderName
                - bban
            wallet:
              type: object
              properties:
                address:
                  description: The blockchain wallet address
                  type: string
                blockchain:
                  description: The blockchain network
                  type: string
                  enum:
                    - BTC
                    - BTC-TESTNET4
                    - ETH
                    - ETH-SEPOLIA
                    - SOL
                    - SOL-DEVNET
                    - MATIC
                    - MATIC-AMOY
              required:
                - address
                - blockchain
          required:
            - type
        payee:
          description: The payee account identifier
          type: object
          properties:
            type:
              type: string
              enum:
                - iban
                - sort_code
                - bank_code
                - bban
                - wallet
                - aba
              x-enumNames:
                - IBAN
                - SORT_CODE
                - BANK_CODE
                - BBAN
                - WALLET
                - ABA
            iban:
              type: object
              properties:
                accountHolderName:
                  type: string
                  minLength: 1
                iban:
                  type: string
                bic:
                  type: string
              required:
                - accountHolderName
                - iban
            aba:
              type: object
              properties:
                accountHolderName:
                  type: string
                  minLength: 1
                routingNumber:
                  type: string
                  pattern: ^[0-9]+$
                accountNumber:
                  type: string
                  pattern: ^[0-9]+$
              required:
                - accountHolderName
                - routingNumber
                - accountNumber
            sortCode:
              type: object
              properties:
                accountHolderName:
                  type: string
                  minLength: 1
                sortCode:
                  type: string
                  pattern: ^[0-9]+$
                accountNumber:
                  type: string
                  pattern: ^[0-9]+$
                  maxLength: 8
              required:
                - accountHolderName
                - sortCode
                - accountNumber
            bankCode:
              type: object
              properties:
                accountHolderName:
                  type: string
                  minLength: 1
                code:
                  type: string
                accountNumber:
                  type: string
              required:
                - accountHolderName
                - code
                - accountNumber
            bban:
              type: object
              properties:
                accountHolderName:
                  type: string
                  minLength: 1
                bban:
                  type: string
                bic:
                  type: string
              required:
                - accountHolderName
                - bban
            wallet:
              type: object
              properties:
                address:
                  description: The blockchain wallet address
                  type: string
                blockchain:
                  description: The blockchain network
                  type: string
                  enum:
                    - BTC
                    - BTC-TESTNET4
                    - ETH
                    - ETH-SEPOLIA
                    - SOL
                    - SOL-DEVNET
                    - MATIC
                    - MATIC-AMOY
              required:
                - address
                - blockchain
          required:
            - type
        bankStatementReference:
          description: The reference that appears on the bank statement
          type: string
        rail:
          description: The payment rail or blockchain used for the deposit
          type: string
          enum:
            - sepa_instant
            - faster_payments
            - sepa
            - elixir
            - express_elixir
            - sek_account_to_account
            - sumclearing
            - straksclearing
            - swift
            - internal
            - target
            - ach
            - fedwire
            - BTC
            - BTC-TESTNET4
            - ETH
            - ETH-SEPOLIA
            - SOL
            - SOL-DEVNET
            - MATIC
            - MATIC-AMOY
        txHash:
          description: The transaction hash for crypto deposits
          type: string
        returns:
          type: array
          items:
            type: object
            properties:
              id:
                description: The ID of the return
                type: string
                format: uuid
              depositId:
                description: The ID of the associated deposit
                type: string
                format: uuid
              transactionId:
                description: The ID of the resulting return transaction
                type: string
                format: uuid
              status:
                description: The status of the return
                type: string
                enum:
                  - initiated
                  - succeeded
                  - failed
                  - returned
                x-enumNames:
                  - Initiated
                  - Succeeded
                  - Failed
                  - Returned
              amount:
                description: The amount of the return
                type: number
              currency:
                description: The currency of the return
                type: string
                enum:
                  - EUR
                  - GBP
                  - PLN
                  - SEK
                  - DKK
                  - USD
                  - USDC
                  - BTC
                  - ETH
                  - SOL
                  - POL
              createdAt:
                description: The date and time the return was created
                type: string
                format: date-time
              failedAt:
                description: The date and time the return failed if applicable
                type: string
                format: date-time
              succeededAt:
                description: The date and time the return succeeded if applicable
                type: string
                format: date-time
            required:
              - id
              - depositId
              - status
              - amount
              - currency
              - createdAt
      required:
        - id
        - status
        - amount
        - transactionId
        - currency
        - receivedAt
        - payer
        - payee
        - returns
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: X-Ivy-Api-Key
      description: API key for authentication

````