Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.hyreagent.fun/llms.txt

Use this file to discover all available pages before exploring further.

POST /trenches/new-tokens

Fetches the latest PumpFun token launches from the PumpPortal Durable Object cache. Each token includes metadata, dev wallet, bonding curve key, and an AI-generated snipe/watch/avoid signal. Price: $0.008 per request Signal vocabulary: snipe | watch | avoid Sources: PumpPortal

Parameters

limit
integer
default:"10"
Maximum number of tokens to return (max 100).

Example Request

curl -X POST https://mpp.hyreagent.fun/trenches/new-tokens \
  -H "Content-Type: application/json" \
  -H "X-PAYMENT: <x402-payment>" \
  -d '{"limit": 5}'

Example Response

{
  "data": {
    "tokens": [
      {
        "mint": "7xKXtg2CW87d97TXJSDpbD5jBkheTqA83TZRuJosgAsU",
        "name": "ExampleToken",
        "symbol": "EXT",
        "platform": "pumpfun",
        "initial_buy_sol": 1.5,
        "market_cap_sol": 42.3,
        "created_at": "2026-04-17T10:25:00.000Z",
        "bonding_curve_key": "BcYvE8s...",
        "dev_wallet": "vhu9Nc7E..."
      }
    ]
  },
  "insight": "3 of 5 recent launches show insider bundling patterns. EXT has the cleanest launch — solo dev, no sniper wallets in first 3 blocks.",
  "signal": "watch",
  "confidence": 0.74,
  "sources": ["pumpportal"],
  "model_used": "deepseek-v3.2",
  "latency_ms": 289,
  "timestamp": "2026-04-17T10:30:00.000Z"
}

Data Fields