Back to Docs

API Reference

Integrate ClawCord data into your own applications.

GET/api/graduations

Fetch recently graduated PumpFun tokens with scoring data.

Response

{
  "graduations": [
    {
      "mint": "8x2f...4k9a",
      "symbol": "$CRAB",
      "name": "CrabCoin",
      "score": 8.2,
      "liquidity": 18500,
      "volume5m": 2300,
      "holders": 156,
      "topHolderConcentration": 23.5,
      "graduatedAt": "2025-01-30T16:00:00Z"
    }
  ]
}
GET/api/token/:mint

Get detailed analysis for a specific token.

Parameters

mintToken mint address

Response

{
  "token": {
    "mint": "8x2f...4k9a",
    "symbol": "$CRAB",
    "score": 8.2,
    "pros": ["Strong volume", "LP locked"],
    "risks": ["New deployer"],
    "metrics": {
      "liquidity": 18500,
      "volume5m": 2300,
      "holders": 156,
      "topHolderConcentration": 23.5
    }
  }
}

Rate Limits

API requests are limited to 60 requests per minute per IP address. Exceeding this limit will result in a 429 response.