/v1/new
Most recently created pools on a network
Try it live
10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.
It works. Grab an API key and use it in your project.
Get an API keyCode snippets
curl "https://api.oanor.com/geckoterminal-api/v1/new" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/geckoterminal-api/v1/new", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/geckoterminal-api/v1/new");
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$out = curl_exec($ch);
import requests
requests.get(
"https://api.oanor.com/geckoterminal-api/v1/new",
headers={"x-oanor-key": "oanor_test_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"data": {
"count": 20,
"pools": [
{
"dex": "uniswap_v2",
"name": "MMG / WETH",
"fdv_usd": 2310.48,
"network": "eth",
"txns_24h": {
"buys": 21,
"sells": 0,
"buyers": 21,
"sellers": 0
},
"created_at": "2026-06-10T13:58:23Z",
"reserve_usd": 2764.19,
"pool_address": "0x460387d2b48e7b1e47f5e59ecf14aee6006a2c3a",
"market_cap_usd": null,
"volume_24h_usd": 554.13,
"base_token_address": "0x5940bc64ae082898450f667e251e6952410706db",
"quote_token_address": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2",
"base_token_price_usd": 2.3105e-6,
"price_change_24h_pct": 130.298,
"quote_token_price_usd": 1655.9944562
},
{
"dex": "uniswap_v2",
"name": "TRILLIONUS / WETH",
"fdv_usd": 2194.38,
"network": "eth",
"txns_24h": {
"buys": 3,
"sells": 0,
"buyers": 3,
"sellers": 0
},
"created_at": "2026-06-10T13:57:47Z",
"reserve_usd": 4081.2,
"pool_address": "0xa1e38ae07a6d606078f8588241b0302ef097e70d",
"market_cap_usd": null,
"volume_24h_usd": 384.66,
"base_token_address": "0xed60b1c10bdfe808ac4e2ac56a83eef5054800b4",
"quote_token_address": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2",
"base_token_price_usd": 5.486e-7,
"price_change_24h_pct": 32.017,
"quote_token_price_usd": 1655.9944562
},
{
"dex": "uniswap-v4-ethereum",
"name": "HOOK / USDC 1%",
"fdv_usd": 16341.15,
"network": "eth",
"txns_24h": {
"buys": 5,
"sells": 0,
"buyers": 5,
"sellers": 0
},
"created_at": "2026-06-10T13:55:59Z",
"reserve_usd": 13.05,
"pool_address": "0xe0428e02aa2be25e03b28cd97e33e7b716e378b6bbf73b7366a0e325c5e660bd",
"market_cap_usd": null,
"volume_24h_usd": 686.5,
"base_token_address": "0x6fd401ca35cdff2154eb07279d760d2f696a4ab7",
"quote_token_address": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48",
"base_token_price_usd": 1.63412e-5,
"price_change_24h_pct": 7.02,
"quote_token_price_usd": 1.00005241
},
{
"dex": "uniswap-v4-ethereum",
"name": "Jotchua / ETH 1%",
…