🖥️API

MantaSwap API

If you are building on Kujira, you can integrate with MantaSwap API to be able to swap any (whitelisted) input token for any (whitelisted) output token in an optimal way, tapping into the entire liquidity available on FIN orderbook.

The API can be accessed at: https://api.mantadao.app/

  • GET /kaiyo-1/whitelist

  • POST /kaiyo-1/route

The former allows you to access the list of whitelisted tokens (if a token you are interested in is missing, please reach out on Telegram and we will get it added).

The latter allow you to trigger a swap and requires a body as such:

{
    "input": {
        "denom": "ibc/DA59C009A0B3B95E0549E6BF7B075C8239285989FF457A8EDDBB56F10B2A6986",
        "amount": "10000000",
        "slippage": 0.002
    },
    "output": {
        "denom": "ukuji"
    }
}

Last updated