Cortexa pairs live market analysis with a guided launch flow, so you understand the conditions around a token before you commit to anything — not after.
Research and launch preparation live side by side, so you're never configuring a launch without the market context behind it.
Live price, liquidity and volume context, summarized in plain language before you decide anything — not buried in a raw chart.
Set your token's name, supply and pairing, then walk through a clear, step-by-step review before anything touches your wallet.
The assistant highlights unusual liquidity, concentration or contract patterns worth a second look. You always make the final call.
Live data from DexScreener's public API — real tokens, real liquidity. The risk flag here is a simple liquidity check, not the full security scan described above.
Connect your own wallet. Cortexa never asks for your private key or seed phrase.
Ask the assistant about the market, comparable launches, or current liquidity conditions.
Set your token's parameters and review a simulated outcome, including estimated fees.
Approve the transaction yourself. Nothing sends without your signature.
Public, read-only endpoints power the same market view the assistant uses. Check a source's status before you trust a number.
const res = await fetch(
'https://api.dexscreener.com/latest/dex/search?q=BTC'
);
const { pairs } = await res.json();
// Pick the most liquid match — free public API, no key needed.
const [best] = pairs.sort((a, b) =>
(b.liquidity?.usd ?? 0) - (a.liquidity?.usd ?? 0)
);
console.log(best.priceUsd, best.priceChange.h24);
This is real — it sends an actual on-chain transaction and costs real gas. Nothing is simulated below. Test on Robinhood Chain testnet (chain 46630) before ever using mainnet funds.
Cortexa never holds your funds or your keys. Every transaction is prepared for your review and only executes when you sign it yourself.
This is not financial advice. Token launches and trading carry real risk, including total loss of funds. Do your own research before connecting a wallet or signing any transaction.
Research is open without a wallet. Launching begins only when you connect and review the terms yourself.
No wallet required
Wallet required to sign
Public read endpoints