---
title: "List Quotes"
method: GET
path: "/internal-transfer/quote/"
tags: ["FX Quotes"]
---

# List Quotes

`GET /internal-transfer/quote/`

Retrieve a list of quote requests.

## Query parameters

- `page_number` integer — Page index (1-based). Results start from page 1 by default.
- `page_size` integer — Maximum number of quotes to return per page. Defaults to 50.
- `date_from` string, date-time — Only include quotes created on or after this timestamp. Must be an ISO 8601 datetime in UTC (applied to the `createdAt` field).
- `date_to` string, date-time — Only include quotes created on or before this timestamp. Must be an ISO 8601 datetime in UTC (applied to the `createdAt` field).
- `include_child_companies` boolean — If set to true, include quotes initiated by any child companies of the authenticated company. Default: false.
- `limit` integer
- `cursor` string

## Headers

- `x-company-id` integer — ID of a child company for authentication. If not provided, the parent company will be authenticated.

## Response `200`

Successful Response

- ListQuotesResponse
  - `next_cursor` string
  - `has_more` boolean
  - `status` 'success'
  - `data` GetFxQuoteResult[], required
    - `id` string, required — Quote ID
    - `company_id` string, required — Company ID
    - `external_id` string — External ID of the quote
    - `source_amount` number, required — Amount to transfer from source to target account (in source account currency)
    - `target_amount` number — Amount to receive in the target account currency (in target account currency)
    - `status` string, required — Status of the quote
    - `failure_reason` string — Reason of the failure, if applicable
    - `source_account_id` string, required — Source account ID
    - `target_account_id` string, required — Target account ID
    - `rate` number — FX rate
    - `expire_at` string, date-time — Expiration date of the rate
    - `created_at` string, date-time — Creation date of the quote
    - `updated_at` string, date-time — Last update date of the quote
    - `callback_url` string — URL to send a POST request with the result of the quote. The schema of the POST request is the same as the response of this endpoint
    - `company` CompanyToIncludeInResponses, required
      - `id` string, required
      - `name` string, required
    - `source_account` AccountToIncludeInResponses, required
      - `id` string, required
      - `account_number` string, required
      - `currency` string, required
      - `country` string, required
      - `company` CompanyToIncludeInResponses, required
        - `id` string, required
        - `name` string, required
    - `target_account` AccountToIncludeInResponses, required
      - `id` string, required
      - `account_number` string, required
      - `currency` string, required
      - `country` string, required
      - `company` CompanyToIncludeInResponses, required
        - `id` string, required
        - `name` string, required

## Other responses

- `403` — Forbidden
- `422` — Validation Error
- `500` — Internal Server Error

---

[API](https://skmtc.net/infiniaweb/apis/payins.md) · [All operations](https://skmtc.net/infiniaweb/apis/payins/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/infiniaweb/payins/revisions/3f453785c478/schema)
