Retrieve detailed information about a specific coin by its mint address
curl --request GET \
--url https://frontend-api-v3.pump.fun/coins/{mint}{
"data": {
"mint": "<string>",
"name": "<string>",
"symbol": "<string>",
"description": "<string>",
"image_uri": "<string>",
"metadata_uri": "<string>",
"twitter": "<string>",
"telegram": "<string>",
"bonding_curve": "<string>",
"associated_bonding_curve": "<string>",
"creator": "<string>",
"created_timestamp": 123,
"raydium_pool": "<string>",
"complete": true,
"virtual_sol_reserves": 123,
"virtual_token_reserves": 123,
"total_supply": 123,
"website": "<string>",
"show_name": true,
"king_of_the_hill_timestamp": 123,
"market_cap": 123,
"reply_count": 123,
"last_reply": 123,
"nsfw": true,
"market_id": "<string>",
"inverted": true,
"username": "<string>",
"profile_image": "<string>",
"usd_market_cap": 123
}
}Documentation Index
Fetch the complete documentation index at: https://mintlify.com/BankkRoll/pumpfun-apis/llms.txt
Use this file to discover all available pages before exploring further.
GET https://frontend-api-v3.pump.fun/coins/{mint}
Authorization: Bearer <your_token>
Show Coin Object Properties
curl -X GET "https://frontend-api-v3.pump.fun/coins/7GCihgDB8fe6KNjn2MYtkzZcRjQy3t9GHdC8uHYmW2hr?sync=true" \
-H "Authorization: Bearer <your_token>" \
-H "Accept: application/json"
{
"mint": "7GCihgDB8fe6KNjn2MYtkzZcRjQy3t9GHdC8uHYmW2hr",
"name": "Example Coin",
"symbol": "EXAMPLE",
"description": "An example coin on Pump.fun",
"image_uri": "https://cf-ipfs.com/ipfs/...",
"metadata_uri": "https://cf-ipfs.com/ipfs/...",
"twitter": "@example",
"telegram": "https://t.me/example",
"bonding_curve": "8mRW...",
"associated_bonding_curve": "9nXY...",
"creator": "CkqW...",
"created_timestamp": 1704067200000,
"raydium_pool": null,
"complete": false,
"virtual_sol_reserves": 30000000000,
"virtual_token_reserves": 1073000000000000,
"total_supply": 1000000000000000,
"website": "https://example.com",
"show_name": true,
"king_of_the_hill_timestamp": null,
"market_cap": 25.5,
"reply_count": 42,
"last_reply": 1704153600000,
"nsfw": false,
"market_id": null,
"inverted": false,
"username": "creator123",
"profile_image": "https://...",
"usd_market_cap": 2856.75
}
sync parameter determines whether to fetch fresh data from the blockchain or use cached datasync=true may result in slower response times but ensures the most up-to-date information<your_token> with your actual JWT tokencurl --request GET \
--url https://frontend-api-v3.pump.fun/coins/{mint}{
"data": {
"mint": "<string>",
"name": "<string>",
"symbol": "<string>",
"description": "<string>",
"image_uri": "<string>",
"metadata_uri": "<string>",
"twitter": "<string>",
"telegram": "<string>",
"bonding_curve": "<string>",
"associated_bonding_curve": "<string>",
"creator": "<string>",
"created_timestamp": 123,
"raydium_pool": "<string>",
"complete": true,
"virtual_sol_reserves": 123,
"virtual_token_reserves": 123,
"total_supply": 123,
"website": "<string>",
"show_name": true,
"king_of_the_hill_timestamp": 123,
"market_cap": 123,
"reply_count": 123,
"last_reply": 123,
"nsfw": true,
"market_id": "<string>",
"inverted": true,
"username": "<string>",
"profile_image": "<string>",
"usd_market_cap": 123
}
}