Public API Endpoints

1. GET /api/new

Fetches all tokens currently classified as New.

GET https://aixbv.tech/api/new

Returns:

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

Fetches all tokens from the Graduated category.

GET https://aixbv.tech/api/graduated

Returns: Same structure as /api/new, with an added key:

jsonSalinEdit{
  ...
  "is_graduated": true
}

3. GET /api/fetch/new

4. GET /api/fetch/graduated

Filtered version of /api/new or /api/graduated.

🔎 Query Parameters:

Param
Type
Description

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=sniperk1ng

5. GET /api/twitter_profile/<username>

Fetches profile information for a Twitter username, cached for 5 minutes.

GET https://aixbv.tech/api/twitter_profile/elonmusk

Returns:

{
  "followers": 1280,
  "following": 120,
  "posts": 345,
  "verified": true,
  "profile_image": "https://pbs.twimg.com/..."
}

6. POST /api/delta

Synchronizes client-side token data with the server to detect changes.

POST https://aixbv.tech/api/delta

Request 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

Submit command-line style queries to the terminal interface.

POST https://aixbv.tech/api/terminal

Request:

{ "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