For the complete documentation index, see llms.txt. This page is also available as Markdown.

◻️Solver Quote API

The platform will send quote requests to multiple Solvers simultaneously to obtain quotations.

1. API Call

  • HTTP Method: POST

  • Provider: Solver

2. Request Parameters

Parameter
Required
Description

fromAmt

Yes

The amount the user wants to exchange

fromCoin

Yes

The token/currency the user sends

toCoin

Yes

The token/currency the user receives

3. Request Example

{
    "fromAmt": "1000000",
    "fromCoin": "USDT(BASE)",
    "toCoin": "USDT(ETH)"
}

4. Response Example

{
    "data": {
        "toAmt": "999800"
    }
}

5. Response Parameters

Parameter
Type
Description

toAmt

String

The actual amount the user will receive

Last updated