REST

Launchpad Stats

Creation and graduation counts (and graduation rate) for pump_fun, raydium_launchlab, and bonkfun over a retention-clamped window. Zeros are 0, never null.

GET/v1/launchpads/stats

Request

curl "https://api.anaxer.com/v1/launchpads/stats?windowHours=24" \
  -H "Authorization: Bearer YOUR_KEY"

Query parameters

NameTypeDescription
windowHoursnumberLookback window in hours (default 24). Clamped to the endpoint's retention window. Example: 24

Response

Example response body:

{
  "windowHours": 24,
  "window": { "from": 1750922469000, "to": 1751008869000 },
  "sources": [
    {
      "source": "pump_fun",
      "creations": 738,
      "graduations": 25,
      "graduationRate": 0.03387533875338753
    },
    {
      "source": "raydium_launchlab",
      "creations": 0,
      "graduations": 0,
      "graduationRate": 0
    },
    {
      "source": "bonkfun",
      "creations": 0,
      "graduations": 0,
      "graduationRate": 0
    }
  ]
}

Fields

Fields of the response body.

NameTypeDescription
windowHoursnumberLookback window used, after retention clamp.
windowobject{ from, to } — effective time bounds in Unix ms.
sourcesobject[]Per-source { source, creations, graduations, graduationRate }. Zeros are 0, never null.