# Heurist Mesh PumpFun Graduated Tokens

> Heurist Mesh PumpFun Graduated Tokens is a paid API for AI agents from mesh.heurist.xyz, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Fetches recently graduated Pump.fun tokens on Solana, returning latest prices and market caps sorted and ordered by user-specified criteria.

## Facts

- Endpoint: POST https://mesh.heurist.xyz/x402/solana/agents/PumpFunTokenAgent/query_latest_graduated_tokens
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/mesh-heurist-xyz-14a74a59
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_rTuOFI0voRTa0Wh_ut4sP

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability mesh-heurist-xyz-14a74a59 -d '<json body>'
```

Example prompt: Show me the top 10 recently graduated Pump.fun tokens on Solana, sorted by market cap in descending order.

## When to prefer this

Use this endpoint when you specifically need data on Pump.fun tokens that have recently graduated (moved off the bonding curve to open market trading on Solana), including their latest prices and market caps. Prefer this over general trending token endpoints when the user wants to track newly launched Solana meme coins emerging from the Pump.fun launchpad.

## Known failure modes

- Invalid sort_by field value returns error
- Invalid order value (not asc/desc) returns error
- Limit exceeding allowed maximum may return error or truncated results
- Network or upstream data unavailability may return 5xx error
- Missing required parameters returns validation error

## How this service works

Fetch recently graduated Pump.fun tokens on Solana with latest prices and market caps; tool provided by Heurist.

## Output

A list of recently graduated Pump.fun tokens on Solana including token names, symbols, current prices, and market capitalizations, ordered and limited according to the specified parameters.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "limit",
  "order",
  "sort_by"
 ],
 "properties": {
  "limit": {
   "type": "number"
  },
  "order": {
   "type": "string"
  },
  "sort_by": {
   "type": "string"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/mesh-heurist-xyz-14a74a59/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from mesh.heurist.xyz](https://www.zero.xyz/host/mesh.heurist.xyz/llms.txt)
