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

Parameter Description:

  • jetton0: The address of the first token
  • jetton1: The address of the second token

Example Request:

GET /getPoolAddress?jetton0=0x1234567890&jetton1=0x0987654321

This request will query the address of the liquidity pool composed of the token with address 0x1234567890 and the token with address 0x0987654321.

Successful Response:

{
  "success": true,
  "data": {
    "poolAddress": "0x1234567890abcdef"
  }
}

Response Field Description:

  • success: Whether the request was successful
  • data.poolAddress: The address of the queried liquidity pool

If no liquidity pool has been created for the queried token pair, the response will be:

{
  "success": false,
  "error": "Pool not found for the given token pair"
}

By calling this API endpoint and providing the addresses of the token pair to be queried, you can obtain the address of the corresponding liquidity pool on the ONTON Finance platform. After obtaining the liquidity pool address, you can further query the detailed information of the pool, such as liquidity and price.

Note that if the queried token pair has not created a liquidity pool, an error response will be returned, indicating that no corresponding pool was found. Please ensure that the token pair has created a liquidity pool before querying the pool address.

Query Parameters

jetton0
string
required
jetton1
string
required

Response

200

Successful response