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

# List deposits

> Lists merchant deposit records. Sweeps are intentionally excluded.



## OpenAPI

````yaml /openapi.json get /v1/deposits
openapi: 3.0.3
info:
  contact:
    email: support@yara.cash
    name: Yara API Support
  description: >-
    Merchant-facing wallets/address-as-a-service API for creating merchant
    receive addresses, inspecting balances, quoting transfers, and initiating
    payouts to whitelisted recipients.

    Public endpoints are for external integrators. Dashboard endpoints are
    gateway-to-environment surfaces protected by the external API gateway.
    Internal endpoints are platform/system surfaces protected by an internal
    token.
  license:
    name: Proprietary
  title: Yara External API - Public API
  version: '1.0'
servers:
  - url: https://api.yara.cash
security: []
paths:
  /v1/deposits:
    get:
      tags:
        - public.deposits
      summary: List deposits
      description: Lists merchant deposit records. Sweeps are intentionally excluded.
      parameters:
        - description: Chain
          in: query
          name: chain
          schema:
            type: string
        - description: Deposit status
          in: query
          name: status
          schema:
            type: string
        - description: Transaction hash
          in: query
          name: tx_hash
          schema:
            type: string
        - description: 'Number of results per page (default: 50, max: 200)'
          in: query
          name: limit
          schema:
            type: integer
            minimum: 1
            maximum: 200
        - description: 'Page number (default: 1)'
          in: query
          name: page
          schema:
            type: integer
            minimum: 1
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DepositListResponse'
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
      security:
        - ApiKeyAuth: []
components:
  schemas:
    DepositListResponse:
      properties:
        data:
          items:
            $ref: '#/components/schemas/Deposit'
          type: array
        meta:
          $ref: '#/components/schemas/PaginationMeta'
      type: object
    ErrorResponse:
      properties:
        error:
          $ref: '#/components/schemas/ErrorBody'
      type: object
    Deposit:
      properties:
        amount:
          example: '100.000000'
          type: string
        amount_raw:
          example: '100000000'
          type: string
        amount_usd:
          example: '100.000000'
          type: string
        asset:
          example: USDC
          type: string
        chain:
          example: BASE
          type: string
        confirmations:
          example: 12
          type: integer
        contract_address:
          example: '0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48'
          type: string
        created_at:
          example: '2026-06-16T03:00:00Z'
          type: string
        deposit_address_id:
          example: 7f7c6713-3fdc-43fb-a9e7-d3c364e7c763
          type: string
        fee_usd:
          example: '0.000000'
          type: string
        from_address:
          example: '0x9a5f8dcb7b0d3f2eb59f20e30aa7d0b93af8abcd'
          type: string
        id:
          example: 741eec3c-5596-45b6-a88d-3627a236192f
          type: string
        merchant_id:
          example: 8fca3c8d-5d48-4f4d-a286-2ef6d1cd2f01
          type: string
        net_amount_usd:
          example: '100.000000'
          type: string
        status:
          example: CONFIRMED
          type: string
        to_address:
          example: '0x24c3538f4d5302ac58a4c05e7496f4ca4bb551d4'
          type: string
        tx_hash:
          example: '0x4f5d2d7a2c8a95c3'
          type: string
      type: object
    PaginationMeta:
      properties:
        limit:
          example: 50
          type: integer
        page:
          example: 1
          type: integer
        total:
          example: 42
          type: integer
        total_pages:
          example: 1
          type: integer
      type: object
    ErrorBody:
      properties:
        code:
          example: validation_error
          type: string
        message:
          example: invalid JSON body
          type: string
      type: object
  securitySchemes:
    ApiKeyAuth:
      description: 'Public merchant API key. You can also send Authorization: ApiKey <key>.'
      in: header
      name: X-Yara-API-Key
      type: apiKey

````