Skip to main content
GET
/
pump-lifecycle
Pump.fun token lifecycle events
curl --request GET \
  --url https://api.dexploit.dev/pump-lifecycle \
  --header 'X-API-Key: <api-key>'
{
  "status": "<string>",
  "events": [
    {
      "mint": "<string>",
      "ts": 123,
      "creator": "<string>",
      "bonding_pct": 123,
      "dex": "<string>",
      "new_pool": "<string>",
      "raw_tx_sig": "<string>"
    }
  ],
  "next_before_ts": 123
}

Documentation Index

Fetch the complete documentation index at: https://docs.dexploit.dev/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

X-API-Key
string
header
required

Preferred for swaps-api endpoints (/swaps/*, /stats/*, /trending, /pool-events).

Query Parameters

status
enum<string>
default:new

Lifecycle phase. new = recent mints; graduating = bonding curve near 100%; migrated = already on pumpswap.

Available options:
new,
graduating,
migrated
limit
integer
default:30
Required range: 1 <= x <= 100
before
integer

Cursor — epoch seconds; returns events strictly older than this.

Response

200 - application/json

Lifecycle events

status
string
events
object[]
next_before_ts
integer | null

Pass this back as before for the next page; null when exhausted.