GET
/
getExpectedOutputs
curl --request GET \
  --url https://api.onton.finance/getExpectedOutputs

Parameter Description:

  • jetton0: input token address
  • jetton1: output token address
  • amount: input token quantity

Example Request:

GET /getExpectedOutputs?jetton0=0x1234567890&jetton1=0x0987654321&amount=1000

This request queries the liquidity pool composed of the token at address 0x1234567890 and the token at address 0x0987654321, and expects to exchange 1000 units of the first token for the second token.

Successful Response:

{
  "success": true,
  "data": {
    "inputToken": "0x1234567890",
    "outputToken": "0x0987654321",
    "inputAmount": 1000,
    "expectedOutputAmount": 495.23
  }
}

Response Field Description:

  • success: whether the request was successful
  • data.inputToken: input token address
  • data.outputToken: output token address
  • data.inputAmount: input token quantity
  • data.expectedOutputAmount: expected output token quantity

By calling this API endpoint and providing the necessary parameters, you can query the expected output amount of a specific liquidity pool on the ONTON Finance platform, given a certain input quantity of tokens. This information can help users assess the cost and profit of a trade before executing it.

Please note that the expected output amount is calculated based on the current reserve status of the liquidity pool, and the actual output amount may differ when the trade is executed, depending on the real-time status of the liquidity pool at the time of the trade.

Query Parameters

jetton0
string
required
jetton1
string
required
amount
number
required

Response

200

Successful response