⚙️
1Konto v1.0 API Docs
  • Welcome!
  • Reference
    • API Reference
    • Service
      • Service Information
      • Service Time
    • Authentication
      • Login and Authentication
    • Market Data
      • Get Top of Book
      • Get Order Book
    • Accounting
      • Get Account
      • Get Account Credit
      • Get Transactions
      • Transfers Instructions
        • Get Deposit Instructions
        • Get Withdraw Instructions
      • Withdraw Requests
        • Request Withdraw - Fiat
        • Request Withdraw - Blockchain
        • Querying for Withdraw Requests
    • Orders
      • Available Asset Pairs
      • Request Indicative Price
      • Market Order
      • Limit Order
      • RFQ - Request for Quote
        • Request Quote
        • Accept Quote
      • Querying for Orders
      • Get Order
Powered by GitBook
On this page
  • RFQ
  • Example
  1. Reference
  2. Orders
  3. RFQ - Request for Quote

Request Quote

requires auth

Use these endpoint to request a firm price.

RFQ

POST /api/v1/routing/account/{accountId}/order/rfq 

Path Parameters:

Path
Type
Description

accountId *

string

your account ID

Body Parameters:

Body
Type
Description

destination *

string

the asset you want to buy

quote *

string

asset in which you want to see the firm price

size *

string

the amount of source asset you want to sell

source *

string

the asset you want to sell

Example

POST /api/v1/routing/account/account123/order/rfq 
// Request body
{
  "destination": "USD",
  "quote": "USDC",
  "size": "1000 USDC",
  "source": "USDC"
}
// Successful Response body
{
  "orderId": "order123",
  "price": "1.0015016016216256264265866187 USD/USDC",
  "result": "998.5006498050584824552634209 USD",
  "expiryTime": "2023-06-01T13:50:11.8908659Z",
  "status": "ok",
  "httpStatusCode": 200
}

PreviousRFQ - Request for QuoteNextAccept Quote

Last updated 1 year ago

Page cover image