boxUse Case Examples

Fetch Fresh Tokens in Python

cmd = "/fetch graduated?caller=sniperk1ng&min_volume=3000"
res = requests.post("https://aixbv.tech/api/terminal", json={"cmd": cmd})

print(res.text)  # Plaintext table output

Trigger Terminal Commands Programmatically

payload = {
    "tab": "col1",
    "rows": {
        "8PVBY...": {
            "volume": "1.3K",
            "holders_count": 101,
            "cur_liq_usd": 2345.6,
            "buys_count": 12,
            "sells_count": 3,
            "first_caller": "sniperk1ng"
        }
    }
}
res = requests.post("https://aixbv.tech/api/delta", json=payload)
delta = res.json()

print("Changed:", len(delta["changed"]), "Removed:", delta["removed"])

Use /delta to Sync Local Token List


Get Twitter Profile Info

arrow-up-right

Last updated