Public API Endpoints
1. GET /api/new
GET /api/newFetches all tokens currently classified as New.
GET https://aixbv.tech/api/newReturns:
jsonSalinEdit[
{
"token_address": "8PVBY4...",
"name": "MyToken",
"symbol": "MTK",
"volume": "2.1K",
"holders_count": 123,
"cur_liq_usd": 4567,
"first_caller": "sniper123",
...
}
]2. GET /api/graduated
GET /api/graduatedFetches all tokens from the Graduated category.
GET https://aixbv.tech/api/graduatedReturns: Same structure as /api/new, with an added key:
jsonSalinEdit{
...
"is_graduated": true
}3. GET /api/fetch/new
GET /api/fetch/new4. GET /api/fetch/graduated
GET /api/fetch/graduatedFiltered version of /api/new or /api/graduated.
🔎 Query Parameters:
limit
int
Max tokens to return
verified
bool
Only tokens with verified devs
min_volume
number
Filter by minimum volume (USD)
min_followers
int
Filter by minimum Twitter followers
caller
string
Filter by exact first caller ID
Example:
GET /api/fetch/new?verified=true&min_volume=5000&caller=sniperk1ng5. GET /api/twitter_profile/<username>
GET /api/twitter_profile/<username>Fetches profile information for a Twitter username, cached for 5 minutes.
GET https://aixbv.tech/api/twitter_profile/elonmuskReturns:
{
"followers": 1280,
"following": 120,
"posts": 345,
"verified": true,
"profile_image": "https://pbs.twimg.com/..."
}6. POST /api/delta
POST /api/deltaSynchronizes client-side token data with the server to detect changes.
POST https://aixbv.tech/api/deltaRequest Body:
{
"tab": "col1",
"rows": {
"8PVBY4...": {
"volume": "1.2K",
"holders_count": 101,
"cur_liq_usd": 2345.6,
"buys_count": 21,
"sells_count": 12,
"first_caller": "degen_alpha"
}
}
}Returns:
{
"changed": [ /* updated rows */ ],
"removed": [ "dead_token_1", "dead_token_2" ],
"all": [ "addr1", "addr2", "addr3" ]
}>_ Terminal Command API
7. POST /api/terminal
POST /api/terminalSubmit command-line style queries to the terminal interface.
POST https://aixbv.tech/api/terminalRequest:
{ "cmd": "/fetch new?verified=true&min_volume=3000" }Returns:
+----------------------+--------+---------+-----------+----------+
| Name |Symbol | Volume | Followers | Verified |
| AlphaToken | ALP | 5.1K | 1200 | Yes |
...📘 Command Examples:
/help– show available commands/th <token_address>– show top 10 holders/fetch new?min_followers=1000/clear– clear terminal
MIME Type:
text/plain
Last updated