---
title: "Get Quote"
method: POST
path: "/quote"
---

# Get Quote

`POST /quote`

This end-point is used to quote a cryptocurrency price as per the payment method, fiat currency and amount.

## Request body

- object
  - `end_user_id` string, required — Unique identifier for a user on the partner's system
  - `digital_currency` string, required
  - `fiat_currency` string, required
  - `requested_currency` string, required — The currency the user is asking a quote for
  - `requested_amount` number, float, required
  - `wallet_id` string — Partner name, as provided by Simplex
  - `client_ip` string, required — The end user's client IP address
  - `payment_methods` string[] — If you want all relevant payment methods to be displayed, do not include this parameter in your request. This is our recommended approach since we will be adding new payment methods frequently. If you like to receive a quote for only one payment method or a subset of all payment methods please contact: customer.success@simplex.com

## Response `200`

Examples of succesfull and failed quote responses

- union
  - union
    - object
      - `user_id` string
      - `quote_id` string
      - `wallet_id` string
      - `digital_money` object
        - `currency` string
        - `amount` number
      - `fiat_money` object
        - `currency` string
        - `base_amount` integer
        - `total_amount` integer
      - `valid_until` string
      - `supported_digital_currencies` string[]
      - `fees` object
        - `partner_fee` Fiat — Fiat schema has currency and amount
          - `amount` string
          - `currency` string
        - `payment_fee` Fiat — Fiat schema has currency and amount
          - `amount` string
          - `currency` string
        - `blockchain_fee` Fiat — Fiat schema has currency and amount
          - `amount` string
          - `currency` string
    - object
      - `user_id` string
      - `quote_id` string
      - `wallet_id` string
      - `digital_money` object
        - `currency` string
        - `amount` integer
      - `fiat_money` object
        - `currency` string
        - `base_amount` number
        - `total_amount` number
      - `valid_until` string
      - `supported_digital_currencies` string[]
      - `fees` object
        - `partner_fee` Fiat — Fiat schema has currency and amount
          - `amount` string
          - `currency` string
        - `payment_fee` Fiat — Fiat schema has currency and amount
          - `amount` string
          - `currency` string
        - `blockchain_fee` Fiat — Fiat schema has currency and amount
          - `amount` string
          - `currency` string
  - ErrorQuote
    - `error` string
    - `detailed_errors` object
      - `errors` object[]
        - `status` number
        - `code` number
        - `title` string

## Other responses

- `500` — internal server error
- `4XX` — 4XX Error

---

[API](https://skmtc.dev/simplex/apis/transactions.md) · [All operations](https://skmtc.dev/simplex/apis/transactions/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/simplex/transactions/revisions/6070cdb42020/schema)
