REST

Latest Token Creations

Recent token launches. Supports source and excludeMayhem. Enrichment mode (enriched) is WebSocket-only — REST returns stored rows.

GET/v1/creations

Request

curl "https://api.anaxer.com/v1/creations?source=pump_fun&excludeMayhem=true&limit=50&from=1751000000000&to=1751008869000" \
  -H "Authorization: Bearer YOUR_KEY"

Query parameters

Full venue catalog: Sources. REST list filters use the singular source query param (one venue). Streams use the sources array.

NameTypeDescription
sourcestringFilter by a single venue slug. Supported: pump_fun, pump_amm, raydium_launchlab, raydium_cpmm, raydium_clmm, raydium_v4, meteora_dbc, meteora_damm_v2, meteora_dlmm, meteora_pools, orca_whirlpool, pancakeswap, bonkfun. Unknown values return 400. Example: pump_fun
excludeMayhembooleanWhen true, drop events where mayhemMode is true. Omit or false to include Mayhem-mode coins. Applies to creations and graduations (WS + REST). Pre-feature REST rows are stored as mayhemMode: false (no backfill), so excludeMayhem will not hide older Mayhem creates. Example: true
limitnumberMaximum number of results (default 50, max 200). Example: 50
cursorstringOpaque keyset cursor from the previous response's next field. Endpoint-scoped — do not reuse across endpoints.
fromstringStart of the time window (ISO-8601 or unix ms). Clamped to your plan's history retention. Example: 1751000000000
tostringEnd of the time window (ISO-8601 or unix ms). Example: 1751008869000

Response

Example response body:

{
  "data": [
    {
      "type": "created",
      "source": "pump_fun",
      "mint": "pumpCmXqMfrsAkQ5r49WcJnRayYRqmXz6ae8H7H9Dfn",
      "name": "Pump",
      "symbol": "PUMP",
      "creator": "7BvK3nF2HxR8mP5qW9tL4sY6jC1dA8eU3gN2fM5A1zXY",
      "uri": "https://ipfs.io/ipfs/QmYwAPJzv5CZsnA625s3Xf2nemtYgPpHdWEz79ojWnPbdG",
      "mayhemMode": false,
      "socials": {
        "website": "https://pump.fun",
        "twitter": "https://x.com/pumpfun",
        "telegram": "https://t.me/pumpfun"
      },
      "signature": "3Nk7pT2xQeB8mVdR4wLc9fJhY6zS1nGtK5uA3oXvW7qE2mCpH8dRzL4nJb9FgKtR5zXvY2mNc8hAeQ",
      "slot": 309812345,
      "timestamp": 1751008864000
    }
  ],
  "next": "eyJ0IjoxNzUxMDA4ODY0MDAwLCJpIjoiLi4uIiwibiI6MTc1MTAwODg2OTAwMCwiawI6ImNyZWF0aW9ucyJ9",
  "window": { "from": 1751000000000, "to": 1751008869000 }
}

Fields

Fields of each item in the data array (list responses wrap items with next and window).

NameTypeDescription
typestringAlways "created".
sourcestringLaunch venue, e.g. pump_fun. See Sources.
mintstringMint address of the new token.
namestringToken name.
symbolstringToken symbol.
creatorstringWallet that created the token.
uristring | nullOn-chain metadata URI. May be null on a cache miss.
mayhemModebooleanTrue for pump.fun Mayhem-mode launches.
socialsobject | nullwebsite / twitter / telegram when known — often null in fast (non-enriched) mode.
signaturestringCreation transaction signature.
slotnumberSolana slot the event landed in. Use for ordering and gap recovery.
timestampnumberEvent time as a Unix epoch millisecond value.