> ## 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 merchant transactions

> Lists deposit and transfer projections for the merchant. Sweeps are not included in this feed.



## OpenAPI

````yaml /openapi.json get /v1/transactions
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/transactions:
    get:
      tags:
        - public.transactions
      summary: List merchant transactions
      description: >-
        Lists deposit and transfer projections for the merchant. Sweeps are not
        included in this feed.
      parameters:
        - description: Source type
          in: query
          name: source_type
          schema:
            type: string
            enum:
              - DEPOSIT
              - TRANSFER
        - description: Transaction status
          in: query
          name: status
          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/TransactionListResponse'
        '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:
    TransactionListResponse:
      properties:
        data:
          items:
            $ref: '#/components/schemas/Transaction'
          type: array
        meta:
          $ref: '#/components/schemas/PaginationMeta'
      type: object
    ErrorResponse:
      properties:
        error:
          $ref: '#/components/schemas/ErrorBody'
      type: object
    Transaction:
      properties:
        amount_usd:
          example: '10.050000'
          type: string
        currency:
          example: USD
          type: string
        direction:
          example: DEBIT
          type: string
        fee_usd:
          example: '0.066667'
          type: string
        id:
          example: 98bf1b5c-b741-430b-9e4b-5edae2eb7919
          type: string
        net_amount_usd:
          example: '10.000000'
          type: string
        occurred_at:
          example: '2026-06-16T03:00:00Z'
          type: string
        reference:
          example: merchant-transfer-001
          type: string
        source_id:
          example: 76179a66-8695-47fd-bca4-310eaa816077
          type: string
        source_type:
          example: TRANSFER
          type: string
        status:
          example: RESERVED
          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

````