Token Pair Info API

Inquires information about two token pairs.

At this time, the order of a and b is adjusted by itself inside the contract.

For example, both a,b → (db6ea1ed, 85e8342) and a,b → (85e8342, db6ea1ed) refer to the same liquidity pool and return the same value.

Token pairs are separated by pair_address.

  • Raw Request Payload

{
    "type": "GetPairInfo",
    "token_address_a": "db6ea1edf4ed76bc9395100aa50bdaf43c428d77f5a3c4790d564
    "token_address_b": "85e8342145958a5a242773694ef5d4f3618ebce8a246b939c02
}
  • Signed Request Payload

{
    "request": {
        "type": "GetPairInfo",
        "token_address_a": "db6ea1edf4ed76bc9395100aa50bdaf43c428d77f5a3c4790d564
        "token_address_b": "85e8342145958a5a242773694ef5d4f3618ebce8a246b939c02
        "from": "910727363ee63f4cf2b8206bda68b4284928f0b41788",
        "timestamp": 1735360020891000
    },
    "public_key": "06b4b269b65a62740132177ff0283594b510effdcb8cb4153e7bee25089b",
    "signature": "17b13609f971ab1e59d6db7bc211d3c829cb1598768e78a2e71cfafb86d899"
}
  • Response

Last updated