Skip to main content
GET
/
search
Search
curl --request GET \
  --url https://advanced-api-v2.pump.fun/search
{
  "found": true,
  "coin": {
    "mint": "<string>",
    "name": "<string>",
    "symbol": "<string>",
    "description": "<string>",
    "imageUri": "<string>",
    "metadataUri": "<string>",
    "creator": "<string>",
    "createdTimestamp": 123,
    "bondingCurve": {
      "progress": 123,
      "marketCap": "<string>",
      "graduated": true
    }
  }
}

Overview

The Search endpoint enables searching for coins using various identifiers, primarily mint addresses. This endpoint provides quick lookup functionality for coin data.

Authentication

This endpoint requires JWT authentication via the Authorization header:
Authorization: Bearer <your_token>

Endpoint

GET https://advanced-api-v2.pump.fun/search

Query Parameters

mint
string
required
The mint address to search for

Response

found
boolean
Whether a matching coin was found
coin
object
Coin object with detailed information (if found)

Example Request

curl -X GET "https://advanced-api-v2.pump.fun/search?mint=7GCihgDB8fe6KNjn2MYtkzZcRjQy3t9GHdC8uHYmW2hr" \
  -H "Authorization: Bearer <your_token>" \
  -H "Accept: application/json"

Use Cases

  • Implement coin search functionality
  • Validate mint addresses
  • Quick lookup of coin information
  • Build autocomplete search features
  • Verify coin existence before operations

Notes

  • Replace <your_token> with your actual JWT token
  • The mint parameter must be a valid Solana address
  • Returns found: false if no matching coin exists
  • Use this endpoint to verify coins before displaying detailed information

Build docs developers (and LLMs) love