Tokens

List Tokens

GET
/api/v1/tokens
List, search, and filter tokens with offset pagination.
Auth: API Key required

Query Parameters

ParamTypeDescription
searchstringFilter by name, symbol, or address
devstringFilter by creator wallet address
isPredictionbooleanFilter by token type
sortstringnewest (default) or oldest
pagenumberPage number (default: 1)
limitnumberItems per page (default: 20, max: 100)

Response

Response
{
  "data": [
    {
      "id": 1,
      "address": "0x...",
      "name": "My Token",
      "symbol": "MTK",
      "description": "...",
      "dev": "0x...",
      "image": "https://...",
      "multiplier": 50,
      "isPrediction": false,
      "predictionType": null,
      "predictionStatus": null,
      "createdAt": "2026-01-01T00:00:00.000Z",
      "lastActivityAt": "2026-03-13T00:00:00.000Z"
    }
  ],
  "pagination": {
    "total": 1250,
    "page": 1,
    "limit": 20,
    "hasMore": true
  }
}
Example Code
// List tokens with search and pagination
const res = await fetch(
  "https://launchonbasis.com/api/v1/tokens?search=ETH&isPrediction=false&sort=newest&page=1&limit=20",
  { headers: { "X-API-Key": "bsk_your_key" } }
);
const { data, pagination } = await res.json();
// pagination = { total, page, limit, hasMore }