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

# List deposits

> Lists deposits for the merchant with cursor-based pagination.



## OpenAPI

````yaml https://app.stainless.com/api/spec/documented/augustus/openapi.documented.yml get /v1/deposits
openapi: 3.1.0
info:
  title: Augustus Banking API
  description: Augustus Banking API
  version: 0.1.0
  contact:
    name: Augustus
    url: https://docs.augustus.com
    email: developer@augustus.com
servers:
  - url: https://api.augustus.com
    description: Production
  - url: https://api.sandbox.augustus.com
    description: Sandbox
security:
  - BearerAuth: []
tags: []
paths:
  /v1/deposits:
    get:
      tags:
        - Deposits
      summary: List deposits
      description: Lists deposits for the merchant with cursor-based pagination.
      operationId: DepositsController_list
      parameters:
        - name: limit
          required: false
          in: query
          description: Number of results per page (1-100). Defaults to 10.
          schema:
            minimum: 1
            maximum: 100
            default: 10
            type: integer
        - name: cursor
          required: false
          in: query
          description: Opaque cursor from a previous next_cursor.
          schema:
            type: string
        - name: status
          required: false
          in: query
          description: Filter by deposit status.
          schema:
            type: string
            enum:
              - received
              - in_return
              - returned
              - return_failed
              - return_returned
        - name: created_at.gte
          required: false
          in: query
          description: >-
            Include deposits whose created_at is greater than or equal to this
            ISO 8601 timestamp.
          schema:
            format: date-time
            pattern: >-
              ^(?:(?:\d\d[2468][048]|\d\d[13579][26]|\d\d0[48]|[02468][048]00|[13579][26]00)-02-29|\d{4}-(?:(?:0[13578]|1[02])-(?:0[1-9]|[12]\d|3[01])|(?:0[469]|11)-(?:0[1-9]|[12]\d|30)|(?:02)-(?:0[1-9]|1\d|2[0-8])))T(?:(?:[01]\d|2[0-3]):[0-5]\d(?::[0-5]\d(?:\.\d+)?)?(?:Z))$
            type: string
        - name: created_at.lte
          required: false
          in: query
          description: >-
            Include deposits whose created_at is less than or equal to this ISO
            8601 timestamp.
          schema:
            format: date-time
            pattern: >-
              ^(?:(?:\d\d[2468][048]|\d\d[13579][26]|\d\d0[48]|[02468][048]00|[13579][26]00)-02-29|\d{4}-(?:(?:0[13578]|1[02])-(?:0[1-9]|[12]\d|3[01])|(?:0[469]|11)-(?:0[1-9]|[12]\d|30)|(?:02)-(?:0[1-9]|1\d|2[0-8])))T(?:(?:[01]\d|2[0-3]):[0-5]\d(?::[0-5]\d(?:\.\d+)?)?(?:Z))$
            type: string
      responses:
        '200':
          description: Paginated list of deposits
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ListDepositsResponseDto'
      x-codeSamples:
        - lang: JavaScript
          source: |-
            import Augustus from '@augustusbank/typescript-sdk';

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

            // Automatically fetches more pages as needed.
            for await (const depositListResponse of client.deposits.list()) {
              console.log(depositListResponse.id);
            }
components:
  schemas:
    ListDepositsResponseDto:
      type: object
      properties:
        data:
          type: array
          items:
            type: object
            properties:
              id:
                description: Unique identifier of the deposit.
                type: string
                format: uuid
                pattern: >-
                  ^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000)$
              type:
                description: Resource type discriminator.
                type: string
                enum:
                  - deposit
              status:
                description: Current status of the deposit.
                type: string
                enum:
                  - received
                  - in_return
                  - returned
                  - return_failed
                  - return_returned
              amount:
                description: Amount as a string decimal (e.g. "100.50").
                type: string
              currency:
                description: Supported fiat or crypto currency code for the deposit amount.
                type: string
                enum:
                  - EUR
                  - GBP
                  - USD
                  - USDC
              source:
                description: >-
                  Counterparty bank account or crypto wallet that sent the
                  funds.
                anyOf:
                  - title: IBAN
                    type: object
                    properties:
                      type:
                        description: Discriminator for IBAN source.
                        type: string
                        enum:
                          - iban
                      iban:
                        description: International Bank Account Number.
                        type: string
                      account_holder_name:
                        description: Name of the account holder.
                        type: string
                      bic:
                        type: string
                        description: Bank Identifier Code, or null if not provided.
                        nullable: true
                    required:
                      - type
                      - iban
                      - account_holder_name
                      - bic
                    additionalProperties: false
                  - title: UK Sort Code
                    type: object
                    properties:
                      type:
                        description: Discriminator for UK sort code source.
                        type: string
                        enum:
                          - sort_code
                      sort_code:
                        description: UK sort code (6 digits).
                        type: string
                      account_number:
                        description: UK account number (8 digits).
                        type: string
                      account_holder_name:
                        description: Name of the account holder.
                        type: string
                    required:
                      - type
                      - sort_code
                      - account_number
                      - account_holder_name
                    additionalProperties: false
                  - title: ABA
                    type: object
                    properties:
                      type:
                        description: Discriminator for ABA wire source.
                        type: string
                        enum:
                          - aba
                      routing_number:
                        description: ABA routing number (9 digits).
                        type: string
                      account_number:
                        description: Bank account number.
                        type: string
                      account_holder_name:
                        description: Name of the account holder.
                        type: string
                    required:
                      - type
                      - routing_number
                      - account_number
                      - account_holder_name
                    additionalProperties: false
                  - title: Wallet
                    type: object
                    properties:
                      type:
                        description: Discriminator for crypto wallet source.
                        type: string
                        enum:
                          - crypto_wallet
                      address:
                        description: Wallet address on the specified blockchain.
                        type: string
                      blockchain:
                        description: Blockchain network for the crypto wallet.
                        type: string
                        enum:
                          - bitcoin
                          - ethereum
                          - solana
                          - polygon
                          - bitcoin_testnet4
                          - ethereum_sepolia
                          - solana_devnet
                          - polygon_amoy
                    required:
                      - type
                      - address
                      - blockchain
                    additionalProperties: false
              destination_account_id:
                description: ID of the merchant account that received the deposit.
                type: string
                format: uuid
                pattern: >-
                  ^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000)$
              bank_statement_reference:
                type: string
                description: >-
                  Reference visible on the bank statement, or null when not
                  applicable.
                nullable: true
              rail:
                description: >-
                  Payment rail or blockchain used for the deposit, or null when
                  unknown.
                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
                  - null
                nullable: true
              tx_hash:
                type: string
                description: Transaction hash for crypto deposits, or null when not known.
                nullable: true
              returns:
                description: Array of deposit return IDs associated with this deposit.
                type: array
                items:
                  type: string
                  format: uuid
                  pattern: >-
                    ^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000)$
              created_at:
                description: ISO 8601 UTC timestamp when the deposit was created.
                type: string
                format: date-time
                pattern: >-
                  ^(?:(?:\d\d[2468][048]|\d\d[13579][26]|\d\d0[48]|[02468][048]00|[13579][26]00)-02-29|\d{4}-(?:(?:0[13578]|1[02])-(?:0[1-9]|[12]\d|3[01])|(?:0[469]|11)-(?:0[1-9]|[12]\d|30)|(?:02)-(?:0[1-9]|1\d|2[0-8])))T(?:(?:[01]\d|2[0-3]):[0-5]\d(?::[0-5]\d(?:\.\d+)?)?(?:Z))$
              updated_at:
                description: ISO 8601 UTC timestamp when the deposit was last updated.
                type: string
                format: date-time
                pattern: >-
                  ^(?:(?:\d\d[2468][048]|\d\d[13579][26]|\d\d0[48]|[02468][048]00|[13579][26]00)-02-29|\d{4}-(?:(?:0[13578]|1[02])-(?:0[1-9]|[12]\d|3[01])|(?:0[469]|11)-(?:0[1-9]|[12]\d|30)|(?:02)-(?:0[1-9]|1\d|2[0-8])))T(?:(?:[01]\d|2[0-3]):[0-5]\d(?::[0-5]\d(?:\.\d+)?)?(?:Z))$
            required:
              - id
              - type
              - status
              - amount
              - currency
              - source
              - destination_account_id
              - bank_statement_reference
              - rail
              - tx_hash
              - returns
              - created_at
              - updated_at
            additionalProperties: false
        has_more:
          type: boolean
        next_cursor:
          type: string
          nullable: true
      required:
        - data
        - has_more
        - next_cursor
      additionalProperties: false
  securitySchemes:
    BearerAuth:
      scheme: bearer
      bearerFormat: JWT
      type: http
      description: Bearer token for authentication with Augustus Banking API

````