GET
/
v1
/
pool
/
{blockchain}
/
{address}
curl --request GET \
  --url https://backend.swap.coffee/v1/pool/{blockchain}/{address}
{
  "dex": "stonfi",
  "address": "<string>",
  "type": "public",
  "amm_type": "constant_product",
  "amm_settings": {},
  "tokens": [
    {
      "address": {
        "blockchain": "ton",
        "address": "native"
      },
      "metadata": {
        "name": "ARBUZ",
        "symbol": "ARBUZ",
        "decimals": 123,
        "image_url": "<string>",
        "listed": true
      }
    }
  ],
  "reserves": [
    123
  ],
  "restrictions": [
    {
      "min_swap_amount": 123,
      "max_swap_amount": 123
    }
  ],
  "fees": {
    "average_gas": 123,
    "divider": 123,
    "input": 123,
    "output": 123,
    "first_token": 123,
    "second_token": 123
  },
  "unavailable_until": 123
}

Authorizations

X-Api-Key
string
header
required

Path Parameters

blockchain
string
required
address
string
required

Response

200
application/json
pool
dex
string
required
address
string
required
type
enum<string>
required
Available options:
public,
private,
slumbering,
invalid
amm_type
enum<string>
required
Available options:
constant_product,
cubic_stable,
curve_fi_stable,
concentrated_v3
tokens
object[]
required
reserves
number[]
required
fees
object
required
amm_settings
object
restrictions
object[]
unavailable_until
integer

UTC unix timestamp in seconds