Quote
Field | Type | Description |
---|---|---|
quote_id | string | The unique identifier for the quote. |
from_currency | string | The source currency code (e.g., USD, EUR). |
to_currency | string | The target currency code (e.g., USD, EUR). |
requested_amount | float | The amount of the source currency to be exchanged. |
exchange_rate | float | The exchange rate offered in the quote.The actual exchange rate may vary slightly due to the rates provided by the exchange channel. We strive to offer the best possible rate, and any differences will be minimal. |
gross_amount | float | The total amount before fees in the target currency. |
fee | float | The transaction fee amount. |
net_amount | float | The amount after deducting fees in the target currency. |
valid_until | datetime | The expiration time of the quote. |
Exchange Order
Field | Type | Description |
---|---|---|
id | string | The unique identifier for the exchange transaction. |
quote_id | string | The identifier for the associated quote. |
from_currency | string | The source currency code (e.g., USD, EUR). |
to_currency | string | The target currency code (e.g., USD, EUR). |
exchange_amount | decimal | The amount of the source currency to be exchanged. |
exchange_rate | float? | The estimated exchange rate offered. The actual rate may vary slightly due to channel rates. |
gross_amount | float? | The estimated gross amount in the target currency before fees. |
fee | float? | The estimated transaction fee. |
net_amount | float? | The net amount in the target currency after deducting fees. |
status | string | The current status of the exchange transaction (e.g., pending, completed, failed). |
create_time | DateTime | The creation time of the exchange transaction. |