Appearance
Pump.Fun RPC Methods
The Nolimitnodes platform offers HTTP API methods for fetching both trade data and coin creation or liquidity pool (LP) data, ensuring seamless access to real-time blockchain data. These API endpoints allow users to query specific timeframes and retrieve structured market insights based on their needs.
Trade Event API
Overview
The trade event API enables users to fetch buy and sell events for a specified cryptocurrency within a given time range. By sending a POST request with parameters such as fromDateTime
, toDateTime
, and page
, users can obtain real-time trade activity, including transaction timestamps
, wallet addresses
, token prices
, and trade volumes. This data is crucial for monitoring market trends, detecting unusual trading behavior, and analyzing price movements based on trade sizes.
Request Endpoint
https://api.nolimitnodes.com/pump-fun/rest/trade-event-data?api_key=YOUR_API_KEY
Payload
The request payload for Trade event api.
json
{
"fromDateTime": "2025-03-02T00:14:55",
"toDateTime": "2025-03-02T23:59:59",
"page": 1
}
Parameters
Parameter | Type | Description |
---|---|---|
fromDateTime | string | Start date and time for fetching trade data. |
toDateTime | string | End date and time for fetching trade data. |
page | integer | Page number for paginated results (default 100 records per page). |
Response
Sample response for the trade event api is
json
[
{
"time": "2025-03-02T07:10:34.404Z",
"wallet": {
"address": "98cKCX2fndtqh9wegB3ZpJBZu5Dr7zDgQScaj1aMviKF"
},
"price": {
"sol": "0.0000001500"
},
"token_out": {
"token": "6n63YoscCSbbURiegXHESmvtRcPWGPjBcF53HruDpump",
"amount": 654411646340
},
"type": "Buy",
"token_in": {
"token": "So11111111111111111111111111111111111111112",
"amount": 98019801
},
"timestamp": 1740899420
}
]
Response Fields
Field | Type | Description |
---|---|---|
timestamp | integer | Unix timestamp for the trade event. |
type | string | Type of trade event (Buy /Sell ). |
price | object | Price details, including SOL value. |
token_in | object | Input token details (address, amount). |
token_out | object | Output token details (address, amount). |
wallet | object | Wallet involved in the trade (address). |
Use Cases
Real-Time Trade Monitoring
- Track live buy/sell events of specific tokens for market trend analysis.
- Identify unusual trading activities to detect possible pump-and-dump schemes.
Price Impact Analysis
- Evaluate how large trades influence token prices.
- Study price fluctuations based on different trade volumes.
Historical Trade Data for Research
- Fetch past trade data to analyze long-term market trends.
- Assess token performance over specific timeframes for investment decisions.
Create Event API
Overview
The create event API provides insights into new token launches and liquidity pool (LP) creations on the Solana blockchain. By sending a POST request with filtering parameters like fromDateTime
, toDateTime
, coin
, and page
, users can track new tokens entering the market, identify associated bonding curves, and analyze liquidity pool formations. This information helps investors, traders, and developers assess new project legitimacy, market expansions, and potential investment opportunities.
Request Endpoint
https://api.nolimitnodes.com/pump-fun/rest/coin-lp-creation?api_key=YOUR_API_KEY
Payload
The request payload for Create event api.
json
{
"fromDateTime": "2025-03-03T00:14:55",
"toDateTime": "2025-03-06T23:59:59",
"coin": "",
"page": 1
}
Parameters
Parameter | Type | Description |
---|---|---|
fromDateTime | string | Start date and time for fetching LP or coin creation datadata. |
toDateTime | string | End date and time for fetching LP or coin creation datadata. |
coin | string | Coin name for which coin or LP creation events are fetched. |
page | integer | Page number for paginated results (default 100 records per page). |
Response for coin creation
Sample response for the Create event api is
json
[
{
"time": "2025-03-03T23:59:50.403Z",
"coin": "ZED",
"associated_bonding_curve": "6cfG5nWKZ2gm5X1mQCmzUgpyFVwT6rT8q44wUPG7MJgY",
"uri": "https://ipfs.io/ipfs/QmWRXKkzVmau6ivuv3nNRYWz2iZSQgRZGK2gpvak2TcBBY",
"mint": "E5GfED6VcD4AmWfTGMbXcQN2h9RFkEwZTHmefHmGpump",
"creator_wallet": {
"address": "CkqNzfbV9hrrWJaqnAtVpK7iLTihzWpduzEjKZH4VvNY"
},
"event_type": "create_coin",
"bonding_curve": "8LEuwsDzrrB8wjZDucttquHfFEpKU2TufqgdK65MPP5m",
"name": "ZED RUN",
"timestamp": "1741046373"
}
]
Response for Liquidity Pool (LP) Creation
json
[
{
"time": "2025-03-06T18:44:35.149Z",
"event_type": "create_lp",
"timestamp": "1741286674",
"token": "9ReMhN8xKz96bAR9dMQrHkuhQPeYC6wtsdrPV1Drpump"
}
]
Response Fields
Field | Type | Description |
---|---|---|
timestamp | string | Unix timestamp for the creation event. |
name | string | Name of the created coin. |
coin | string | Symbol of the created coin. |
uri | string | URI containing additional metadata. |
mint | string | Mint address of the created coin. |
bondingCurve | string | Address of the bonding curve contract. |
associatedBondingCurve | string | Address of the associated bonding curve. |
creator_wallet | object | Wallet address of the creator. |
token | string | Token address of the LP. |
event_type | string | Event type (e.g., create_coin , create_lp ). |
Use Cases
Trade Monitoring & Analysis
- Track real-time buy/sell events of specific tokens.
- Identify unusual trading activities to detect pump-and-dump schemes.
Price Impact Analysis
- Evaluate price fluctuations based on trade volumes.
- Determine how large trades influence token prices.
New Token Discovery
- Identify new coin creations for investment opportunities.
- Monitor token launches before mainstream adoption.
Market Expansion Analysis
- Track new liquidity pools across different networks.
- Monitor token launches in specific market sectors (e.g., gaming, DeFi).
Risk Management & Fraud Detection
- Detect suspicious LP creations that may indicate rug-pull schemes.
- Flag repeated coin creations from known fraudulent addresses.
Investment Strategies
- Identify new coins with strong liquidity support.
- Track creator activity to assess project sustainability.