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

# Transactions

> List transactions belonging to the authenticated user.

List transactions belonging to the authenticated user. Filter by test type and paginate with `limit`/`offset`.

## Request body

<ParamField body="action" type="string" required>
  Must be `list`.
</ParamField>

<ParamField body="data" type="object">
  <Expandable title="data fields">
    <ParamField body="limit" default="50" type="integer">
      Maximum records to return (1–100).
    </ParamField>

    <ParamField body="offset" default="0" type="integer">
      Zero-based offset for pagination.
    </ParamField>

    <ParamField body="type" type="string">
      Filter by transaction type: `visual`, `health`, or `flow`.
    </ParamField>
  </Expandable>
</ParamField>

## Response

<ResponseField name="transactions" type="array" required>
  <Expandable title="Transaction">
    <ResponseField name="transaction_detail" type="object" required>
      Free-form details specific to the test type.
    </ResponseField>
  </Expandable>
</ResponseField>
