Quote
Learn about the Quote objects and its endpoints.
You can retrieve a
Quote
object before committing for an exchange transaction. The object tells what price you can expect if you exchange your digital asset for another.You can create, accept, and retrieve exchange quotes with Gluwa API.
Get Quote for currency exchange
Attribute | Type | Description |
Amount | string | The amount in source currency you want to exchange. |
Conversion | string | |
SendingAddress | string | The address that will fund the source amount. |
SendingAddressSignature | string | |
ReceivingAddress | string | The address that the exchanged currency will be received. For example, if the conversion is BtcUsdg , your receiving address must be a USD-G address since your exchanged funds will be sent to that address. |
ReceivingAddressSignature | string | |
BtcPublicKey | string | Optional. Required if the source currency is BTC . This is BTC public key of the sending address that will be used to reserve your funds. |
HTTP Status | Return Object |
200 |
Attribute | Type | Description |
Conversion | string | |
TotalSourceAmount | string | The total amount in source currency that will be exchanged. |
TotalFee | string | The exchange fee. |
TotalEstimatedExchangedAmount | string | The total estimated exchanged amount in exchanged currency. |
AveragePrice | string | The average of all the prices in the list of matched orders. The unit is <exchanged currency>/<source currency> . |
BestPrice | string | The best price available in the list of matched orders. The unit is <exchanged currency>/<source currency> . |
WorstPrice | string | The best price available in the list of matched orders. The unit is <exchanged currency>/<source currency> . |
MatchedOrders | The list of matched orders available to fulfill the requested source amount. | |
CreatedDateTime | DateTime | The time when the quote is created. |
TimeToLive | int | The duration in seconds that the quote is valid. |
Checksum | string | Checksum. Used when you accept the quote. |
Attribute | Type | Description |
OrderID | UUID | Order ID |
DestinationAddress | string | The address where the source amount must be sent to. |
SourceAmount | string | The amount in source currency that this order will exchange. |
Fee | string | The fee amount that must be used to create ReserveTxnSignature , ExecuteTxnSignature and ReclaimTxnSignature |
ExchangedAmount | string | The amount in exchanged currency that this order will fulfill. |
Price | string | The price this order is offering for the exchange. The unit is <exchanged currency>/<source currency> . |
ExpiryBlockNumber | string | Optional. Required if the source currency is Gluwacoin currency (ex> USD-G , KRW-G ). The block number where your reserved funds will expire. You need this to create the reserve transaction signature. After this block number, the exchange will not execute, and you may call reclaim function on the blockchain to release your reserved funds. |
Executor | string | Optional. Required if the source currency is Gluwacoin currency (ex> USD-G , KRW-G ). The address that will execute the exchange on your behalf. You need this to sign the reserve transaction signature. |
ReservedFundsAddress | string | Optional. Required if the source currency is BTC . The address where the source amount must be sent to to reserve your funds for the exchange. |
ReservedFundsRedeemScript | string | Optional. Required if the source currency is BTC . |
HTTP Status | Error Code | Description |
400 | InvalidUrlParameters | Invalid URL parameters |
400 | MissingBody | Request body is missing. |
400 | InvalidBody | Request validation errors. See InnerErrors. |
400 | ValidationError | Request validation errors. See InnerErrors. |
404 | NotFound | No orders are matched. |
500 | InternalServerError | Server error. |
Accept quote received from
POST /v1/Quote
endpoint.Attribute | Type | Description |
MatchedOrders | All orders that will fulfill this quote. | |
Checksum | string | Checksum that was received when quote was created. |
Attribute | Type | Description |
OrderID | UUID | ID of the order that was matched |
ReserveTxnSignature | string | Reserve transaction signature used to reserve funds for the exchange. |
Nonce | string | Optional. Required if the source currency is Gluwacoin currency (ex> USD-G , KRW-G ). Nonce is an integer used when creating reserve transaction signature. It must increase each time you make any new transactions (transfer, exchange, etc). |
ExecuteTxnSignature | string | Optional. Required if the source currency BTC . Execute transaction signature used to execute the exchange when your funds are available in the reserve address. |
ReclaimTxnSignature | string | Optional. Required if the source currency BTC . Reclaim transaction signature used to return the funds in the reserve address when the exchange fails or expires. |
HTTP Status | Return Object |
202 |
Attribute | Type | Description |
ID | UUID | The ID of the accepted quote. |
HTTP Status | Error Code | Description |
400 | InvalidUrlParameters | Invalid URL parameters |
400 | MissingBody | Request body is missing. |
400 | InvalidBody | Request validation errors. See InnerErrors. |
400 | ValidationError | Request validation errors. See InnerErrors. |
403 | Forbidden | Invalid checksum. Checksum may be wrong or expired. |
404 | NotFound | One of the matched orders are no longer available. |
500 | InternalServerError | Server error. |
Get a list of accepted quotes.
Header | Type | Description |
X-REQUEST-SIGNATURE | string |
Attribute | Type | Description |
currency | string | |
address | string | The sending address of the quote. |
Attribute | Type | Description |
startDateTime | datetime | ISO 8601 format datetime. If defined, only quotes created after this datetime are included in the response. |
endDateTime | datetime | ISO 8601 format datetime. If defined, only quotes created before this datetime are included in the response. |
status | string | Pending or Processed . |
offset | int | Number of quotes to skip the beginning of list. Defaults to 0. |
limit | int | Number of quotes to include in the result. Defaults to 25, maximum of 100. |
HTTP Status | Return Object |
200 |
Attribute | Type | Description |
ID | UUID | Accepted quote ID. |
SendingAddress | string | The address that funded the source amount. |
SourceAmount | string | The total amount |
Fee | string | The total fee of the exchange |
EstimatedExchangedAmount | string | The estimated exchange amount. Sometimes, if someone takes the order before you, the exchange will not be executed. |
AveragePrice | string | The average of all the prices in the list of matched orders. The unit is <exchanged currency>/<source currency> . |
BestPrice | string | The best price available in the list of matched orders. The unit is <exchanged currency>/<source currency> . |
WorstPrice | string | The best price available in the list of matched orders. The unit is <exchanged currency>/<source currency> . |
ReceivingAddress | string | The address that the exchanged currency is received. |
Status | string | Pending or Processed . |
Conversion | string |
HTTP Status | Error Code | Description |
400 | InvalidUrlParameters | Invalid URL parameters |
403 | SignatureMissing | X-REQUEST-SIGNATURE header is missing. |
403 | SignatureExpired | X-REQUEST-SIGNATURE has expired. |
403 | InvalidSignature | Invalid X-REQUEST-SIGNATURE . |
500 | InternalServerError | Server error. |
Get an accepted quote with ID.
Header | Type | Description |
X-REQUEST-SIGNATURE | string |
Attribute | Type | Description |
ID | UUID | ID of the accepted quote. |
HTTP Status | Return Object |
200 |
Attribute | Type | Description |
ID | UUID | Accepted quote ID. |
SendingAddress | string | The address that funded the source amount. |
SourceAmount | string | The total source amount. |
Fee | string | The total fee of the exchange. |
EstimatedExchangedAmount | string | The estimated exchange amount. Sometimes, if someone takes the order before you, the exchange will not be executed. |
ReceivingAddress | string | The address that the exchanged currency is received. |
Status | string | Pending or Processed . |
Conversion | string | |
MatchedOrders | The list of matched orders that fulfilled the source amount. |
Attribute | Type | Description |
SourceAmount | string | The amount in source currency that this order will exchange. |
Fee | string | The fee amount used to create ReserveTxnSignature , ExecuteTxnSignature and ReclaimTxnSignature |
Status | string | Pending , Success or Failed . |
Price | string | The price this order is offering for the exchange. The unit is <exchanged currency>/<source currency> . |
HTTP Status | Error Code | Description |
400 | InvalidUrlParameters | Invalid URL parameters |
403 | SignatureMissing | X-REQUEST-SIGNATURE header is missing. |
403 | SignatureExpired | X-REQUEST-SIGNATURE has expired. |
403 | InvalidSignature | Invalid X-REQUEST-SIGNATURE . |
404 | NotFound | Quote not found. |
500 | InternalServerError | Server error. |
Last modified 3yr ago