---
title: "List transactions for an instant settlement"
method: GET
path: "/api/InstantSettlement/{instantSettlementNumber}/transactions"
tags: ["InstantSettlement"]
---

# List transactions for an instant settlement

`GET /api/InstantSettlement/{instantSettlementNumber}/transactions`

Sample request:
            
    GET /transactions?Count=20&TimeFilterMin=2020-06-10T09:28:54Z&TimeFilterMax=2020-06-17T09:28:54Z&SortProperty=DateCreated&SortReverse=true

## Path parameters

- `instantSettlementNumber` integer, required

## Query parameters

- `Count` integer — Gets or sets the maximum number of transactions to return.
- `TimeFilterMin` string, date-time — Gets or sets the start of the dateCreated time range of transactions to return. Format: ISO 8601. Example: 2020-06-10T09:28:54Z.
- `TimeFilterMax` string, date-time — Gets or sets the end of the dateCreated time range of transactions to return. Format: ISO 8601. Example: 2020-06-17T09:28:54Z.
- `SortProperty` 'InstantSettlementTransactionNumber' | 'InstantSettlementId' | 'Status' | 'DateCreated' | 'DateFunded' | 'DateRepaid' | 'CurrentAmount' | 'FundedAmount' | 'Amount' | 'AmountAfterFees'
- `SortReverse` boolean — Gets or sets a value indicating whether to return transactions in ascending (false) or descending (true) order.

## Headers

- `api-version` string

## Response `200`

Instant settlement transactions are returned

- InstantSettlementTransactionModel[]
  - `instantSettlementId` string, uuid — Gets or sets the Instant Settlement Id
  - `instantSettlementTransactionNumber` integer — Gets or sets the Instant Settlement Number
  - `status` 'Funded' | 'Unfunded' | 'Repaid'
  - `dateCreated` string, date-time — Gets or sets the date the loan was created
  - `dateFunded` string, date-time — Gets or sets the date the loan was funded
  - `dateRepaid` string, date-time — Gets or sets the date the loan was repaid
  - `currentAmount` number, double — Gets or sets the current amount outstanding for the loan
  - `fundedAmount` number, double — Gets or sets the originally funded amount for the loan
  - `amount` number, double — Gets or sets the actual loan amount
  - `amountAfterFees` number, double — Gets or sets the actual loan amount after fees have been subtracted
  - `requestedAmount` number, double — Gets or sets the amount requested for funding for the loan, before dilution is applied
  - `percentageToInstantSettle` number, double — Gets or sets the dilution (percentage of the YL.Web.Api.ThirdParty.Loan.InstantSettlement.Models.InstantSettlementTransactionModel.RequestedAmount that is actually funded)
  - `maxExposure` number, double — Gets or sets the Maximum Exposure at the time of loan creation

## Other responses

- `400` — Something went wrong!
- `401` — Unauthorized request
- `403` — Forbidden request
- `404` — Instant settlement not found
- `422` — Query parameters failed validation
- `500` — Servers are unavailable

---

[API](https://skmtc.dev/youlend/apis/prequalification.md) · [All operations](https://skmtc.dev/youlend/apis/prequalification/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/youlend/prequalification/revisions/a76313c6cc3d/schema)
