We scrape every token deploy across every major launchpad — every day. Every image is fingerprinted and stored in a public API so platforms can instantly detect recycled artwork from known scams.
Scammers reuse the same images across dozens of token launches. The Index makes that pattern visible and queryable.
Our crawlers monitor every major Solana launchpad 24/7 — PumpFun, BONKfun, Moonshot, and more. Every new token deploy is captured within seconds, including its image, metadata, and creator wallet.
Each image is perceptually hashed using multiple algorithms (pHash, dHash, SSIM). This means we catch near-matches too — cropped, resized, color-shifted, or watermarked copies all resolve to the same fingerprint.
Launchpads and tools query our API with an image before a token goes live. If it's been used before, we return the full history — every token that used it, when, and what happened to that token. Rugged? Flagged.
When a creator uploads a token image on a launchpad, it gets checked against our entire index before the token goes live.
When a new token is submitted on a launchpad like BONKfun, the platform sends the token image to The Index API. Within milliseconds, we return whether this image — or any near-match — has been used in a previous deploy.
Launchpads can then warn users, flag the token, or block the deploy entirely. The result: scammers can't reuse the same art to run the same con twice.
See API ResponseUpload an image or pass a URL. Get back every token that has ever used it.
// Check if an image has been used before { "image_url": "https://pump.mypinata.cloud/ipfs/Qm...abc", "threshold": 0.92 }
{
"matches": 4,
"is_recycled": true,
"risk_score": 0.96,
"history": [
{
"token": "FakeDogeAI",
"mint": "7xK...9fQ",
"platform": "pumpfun",
"launched": "2026-02-14T08:22:00Z",
"status": "rugged",
"similarity": 0.98,
"creator_wallet": "3nP...xW2"
},
{
"token": "DogeAI2.0",
"mint": "Bk2...mR7",
"platform": "bonkfun",
"launched": "2026-03-01T14:05:00Z",
"status": "rugged",
"similarity": 0.95,
"creator_wallet": "3nP...xW2"
}
// ... 2 more matches
]
}
The infrastructure behind catching serial scammers at scale.
We don't just compare pixels. pHash, dHash, and SSIM together catch crops, resizes, overlays, color shifts, and re-renders.
Optimized vector search across millions of fingerprints. Get your answer before the user finishes filling in the token name.
When the same image appears across tokens, we link the creator wallets. See the full trail of a serial deployer.
New deploys are indexed within seconds. The database grows by ~50,000 images per day across all tracked platforms.
We monitor token status post-launch. If a token rugs, every image associated with it gets flagged retroactively.
Core image lookups are free and publicly accessible. We believe safety infrastructure should be open to every platform.
We index every deploy from these launchpads daily. More added every week.
Integrate The Index into your launchpad or trading tool. The API is public and free.