New Markets
The New Markets WebSocket stream notifies you in real time whenever a new liquidity pool is created on a supported Solana DEX, including its pool ID, token pair and amounts, signature creation timestamp, and slot number.
Filters
Filter | Description | Example JSON Filter |
---|---|---|
source | Only pools created on specific DEXs | LanMV9sAd7wArD4vJFi2qDdfnVhFxYSUg6eADduJ3uj |
tokenAMint | Pools where Token A’s mint address matches | DhSWc2WdLsNwRMFXBjenRepDgz1T9fEHNrAPy6jDbonk |
tokenBMint | Pools where Token B’s mint address matches | So11111111111111111111111111111111111111112 |
Response
Field | Description | Example |
---|---|---|
DEX ID | Protocol’s internal identifier | 3bXz9QpFgK8eT4s1VhZdY2a6LvR5mWjGhUo1KqR2xT |
Pool ID | On-chain address of the new liquidity pool | 3bXz9QpFgK8eT4s1VhZdY2a6LvR5mWjGhUo1KqR2xT |
TokenAMint | Mint address of Token A | 3bXz9QpFgK8eT4s1VhZdY2a6LvR5mWjGhUo1KqR2xT |
TokenBMint | Mint address of Token B | So11111111111111111111111111111111111111112 |
initialLiquidityTokenA | Initial amount of Token A | 793100000 |
initialLiquidityTokenB | Initial amount of Token B | 85 |
Signature | Signature confirming the creation | 3VX5bFgvxoZEPaYVQSaVHdYEJfhsDAojDjdxjWkHoZ6We2oZdAbeawJudyUDxyYvCmfYHiF1nqnRKwyY2mhAkzn9 |
Slot | Solana block slot of confirmation | 355505852 |
Example Filter
{
"type": "configure",
"filters": {
"newMarket": [
{
"source": "LanMV9sAd7wArD4vJFi2qDdfnVhFxYSUg6eADduJ3uj",
"tokenAMint": "DhSWc2WdLsNwRMFXBjenRepDgz1T9fEHNrAPy6jDbonk",
"tokenBMint": "So11111111111111111111111111111111111111112"
}
]
}
}
Example Result
{
"dexId": "pAMMBay6oceH9fJKBRHGP5D4bD4sWpmSwMn52FMfXEA",
"poolId": "GsyksCwLjzSV8G1CnYE1PqMuJFZiMUxhBiQ9tT5Fs3Xr",
"tokenAMint": "So11111111111111111111111111111111111111112",
"tokenBMint": "4fKNrd4zm4i3tjXisrzkCtR3KvrHg3z9uXrrHrxyREyv",
"initialLiquidityTokenA": "11",
"initialLiquidityTokenB": "45000000",
"signature": "3NAsarFx9AW7M47NTn6TPXiZzAUVX9bmk1v1NWiT4WjG5RfdkLC9VmnKBRtxxJLr1YAXkJdGvniKN65KzWwoJrTs",
"slot": 355505852,
"timestamp": 1753391221
}
Updated 1 day ago