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

FilterDescriptionExample JSON Filter
sourceOnly pools created on specific DEXsLanMV9sAd7wArD4vJFi2qDdfnVhFxYSUg6eADduJ3uj
tokenAMintPools where Token A’s mint address matchesDhSWc2WdLsNwRMFXBjenRepDgz1T9fEHNrAPy6jDbonk
tokenBMintPools where Token B’s mint address matchesSo11111111111111111111111111111111111111112

Response

FieldDescriptionExample
DEX IDProtocol’s internal identifier3bXz9QpFgK8eT4s1VhZdY2a6LvR5mWjGhUo1KqR2xT
Pool IDOn-chain address of the new liquidity pool3bXz9QpFgK8eT4s1VhZdY2a6LvR5mWjGhUo1KqR2xT
TokenAMintMint address of Token A3bXz9QpFgK8eT4s1VhZdY2a6LvR5mWjGhUo1KqR2xT
TokenBMintMint address of Token BSo11111111111111111111111111111111111111112
initialLiquidityTokenAInitial amount of Token A793100000
initialLiquidityTokenBInitial amount of Token B85
SignatureSignature confirming the creation3VX5bFgvxoZEPaYVQSaVHdYEJfhsDAojDjdxjWkHoZ6We2oZdAbeawJudyUDxyYvCmfYHiF1nqnRKwyY2mhAkzn9
SlotSolana block slot of confirmation355505852

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
}