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

# List transactions

Get the user's transaction history.

Requires a **per-user api-key**.

<ParamField body="startDate" type="number">
  Unix timestamp in milliseconds
</ParamField>

<ParamField body="endDate" type="number">
  Unix timestamp in milliseconds
</ParamField>

<ParamField body="limit" type="string">
  Max results (stringified number)
</ParamField>

<ParamField body="offset" type="string">
  Pagination offset (stringified number)
</ParamField>

All fields are optional.

<ResponseExample>
  ```json 200 theme={null}
  {
    "transactions": [
      {
        "orderId": "3521154c-30b4-480c-834d-38f80d507963",
        "type": "OFFRAMP_WITHOUT_FIAT_WITHDRAWAL",
        "subType": "ONCHAIN",
        "sourceAmount": "100000",
        "sourceCurrency": "USDC",
        "destinationAmount": "3816",
        "destinationCurrency": "EUR",
        "status": "SUCCESSFUL",
        "createdAt": "2024-01-18T14:02:59.709Z"
      }
    ],
    "number": 1,
    "totalCount": 4
  }
  ```
</ResponseExample>
