This API provides detailed insights into any Pump.fun developer wallet address. It delivers comprehensive data, including the developer's token creation history, performance metrics such as survivability, profit distribution, and developer sell probability, along with aggregated insights on the quality of tokens created by the developer.
Updated approximately every 30 minutes, this near real-time data empowers you to make informed trading decisions. Use it to enhance your entry strategies by filtering out underperforming developers or optimize trade management by setting dynamic take-profit levels based on the developer's historical performance.
The data starts in January 2025.
Access to the API requires an API key which can be obtained by joining our group here.
Once you have your API key, include it in the request header:
Authorization: Bearer ${API_KEY}
Please note, there is a rate limit of 200 requests per hour.
This endpoint retrieves information about a specific Pump.fun developer wallet address. The response is a JSON object containing detailed insights into the developer's token creation history and performance metrics.
Parameter | Type | Required | Description |
---|---|---|---|
address | String | Yes | The developer's wallet address to query. |
The API returns a JSON with the following schema:
{
"success" : Boolean,
"message" : String (optional error message),
"data" : { ...see below... }
}
Field | Type | Nullable | Description |
---|---|---|---|
success | Boolean | No | Indicates the operation success status. |
message | String | Yes | Optional error message set only if success is false. |
data | Object | Yes (if success false) | Object of type DeveloperInformation |
Field | Type | Nullable | Description |
---|---|---|---|
devAddress | String | No | Developer's wallet address. |
percentBonded | Float | No | Percent of developer's tokens that migrated to Raydium. |
firstActivity | String | No | An ISO datetime for the first token created by this dev. |
percentBundled | Float | No | Percent of developer's tokens that included bundled buys in the first 10 transactions. |
avgGrowth | Float | No | A score between 0 and 1 which indicates how much tokens created by this dev grow on average. This score is not a percentage. |
devScore | Object | No | A score between 0 and 1 which indicates how long tokens created by this dev stay alive after launch. This score does not imply growth. Tokens which don't drop below their launch market cap for a longer time after launch will have higher scores, irrespective of their total growth. |
totalCreated | Integer | No | Number of tokens created by this dev. |
tokens | Array[TokenInformation] | No | An array containing information about tokens created by this dev. This array is limited to the 12 most recent tokens. |
survivalProbability | Object | No | Average survival probability for tokens created at each time interval. This data is used to compute the devScore. |
devSellProbability | Object | No | Average dev sell probability for tokens created at each time interval. |
bestToken | Object | No | The best performing token created by this dev (it might not be in the tokens as that is limited to 12 results). |
profitDistribution | Object | No | Distribution of max profit (growth compared to initial market cap) for tokens created by this dev. |
Field | Type | Nullable | Description |
---|---|---|---|
tokenAddress | String | No | Unique address of the token. |
ath | Float | No | All-time high value of the token. |
metadata | Object | No | Contains name, symbol, description, image URL, etc. |