New pump
New pump.fun launches since a cursor, with calibrated probabilities ($0.001 per poll). The polling feed for bots: every covered launch created after `since` (unix seconds; default the last 60 s, at mo
1000 (raw units)
price
2
calls / 30d
2
unique payers
2026-09-17
updated
Provider
api.loopholetape.com · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp",
"payTo": "9HkwyUhDMyjbpSpnyu5xuZ9vRaFQeajnJsavhie7XcsT",
"asset": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"amount": "1000",
"maxTimeoutSeconds": 60
},
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x25d408eF54e60F3006bD13d5A040d525E2F359c2",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "1000",
"maxTimeoutSeconds": 60
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"queryParams": {
"limit": 100,
"since": 1789228000
},
"type": "http"
},
"output": {
"example": {
"coverage": "full",
"data": {
"count": 2,
"items": [
{
"age_s": 1.6,
"check_url": "https://api.loopholetape.com/v1/check/mint/73sfnFgqQzpSRZSimCC4sxpubqghRGYewYLmiUH2pump",
"created_at": 1789228058.4,
"dev_share": 0.03,
"flags": [],
"mint": "73sfnFgqQzpSRZSimCC4sxpubqghRGYewYLmiUH2pump",
"n_buys": 2,
"name": "Memestock",
"probabilities": {
"rug_within_300s": 0.41,
"true_graduation": 0.006
},
"rs_sol": 30.9,
"symbol": "MEME",
"top5_share": 0.61,
"unique_buyers_60s": 2
}
],
"next_cursor": 1789228058.4,
"since": 1789228000,
"truncated": false
},
"ok": true
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET",
"HEAD",
"DELETE"
],
"type": "string"
},
"queryParams": {
"properties": {
"limit": {
"default": 100,
"type": "integer"
},
"since": {
"type": "number"
}
},
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://api.loopholetape.com/v1/launches/since" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://api.loopholetape.com/v1/launches/since");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}Python
import httpx
res = httpx.get("https://api.loopholetape.com/v1/launches/since")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/7329.json, and this resource appears in /discovery/resources and /discovery/search.