satellite-dishPublic 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:

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:

5. GET /api/twitter_profile/<username>

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

Returns:


6. POST /api/delta

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

Request Body:

Returns:


>_ Terminal Command API

7. POST /api/terminal

Submit command-line style queries to the terminal interface.

Request:

Returns:

📘 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