Use 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


username = "sniperk1ng"
url = f"https://aixbv.tech/api/twitter_profile/{username}"
data = requests.get(url).json()

print(f"Followers: {data['followers']} — Verified: {data['verified']}")

Get Twitter Profile Info

import requests

resp = requests.get("https://aixbv.tech/api/fetch/new?min_volume=5000&verified=true")
tokens = resp.json()

for token in tokens:
    print(token["name"], token["volume"], token["first_caller"])

Last updated