Skip to content
GET /v1/coin

One token's full profile by mint

Try it live

10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.

Custom headers (optional)
api.oanor.com/pumpfun-api

It works. Grab an API key and use it in your project.

Get an API key

Code snippets

curl "https://api.oanor.com/pumpfun-api/v1/coin" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/pumpfun-api/v1/coin", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/pumpfun-api/v1/coin");
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/pumpfun-api/v1/coin",
    headers={"x-oanor-key": "oanor_test_..."}
)

Example response

A real response from this endpoint, captured by the latest health check.

{
    "data": {
        "mint": "9BB6NFEcjBCtnNLFko2FqVQBq8HHM13kCyYcdQbgpump",
        "name": "Fartcoin ",
        "note": "One Pump.fun token's full profile by mint address: market cap (USD), whether it has graduated off the bonding curve to a DEX, reply count, age, creator, socials and description. Live, cached ~30s.",
        "nsfw": false,
        "source": "Pump.fun public web API (frontend-api-v3.pump.fun), keyless",
        "symbol": "Fartcoin ",
        "creator": "HyYNVYmnFmi87NsQqWzLJhUTPBKQUfgfhdbBa554nMFF",
        "is_live": false,
        "twitter": "https://x.com/fartcoinofsol",
        "website": "https://www.infinitebackrooms.com/dreams/conversation-1721540624-scenario-terminal-of-truths-txt",
        "pump_url": "https://pump.fun/coin/9BB6NFEcjBCtnNLFko2FqVQBq8HHM13kCyYcdQbgpump",
        "telegram": null,
        "graduated": true,
        "age_minutes": 867691.1,
        "description": null,
        "reply_count": 14017,
        "market_cap_usd": 117483336,
        "created_timestamp": 1729231506539,
        "last_trade_timestamp": 1781292676000
    },
    "meta": {
        "timestamp": "2026-06-12T19:36:11.317Z",
        "request_id": "c8bb68b1-6b64-4f2e-b89a-5ce89b5b0262"
    },
    "status": "ok",
    "message": "Token retrieved successfully",
    "success": true
}