# Heurist Vending Machine – List Token Launches

> Heurist Vending Machine – List Token Launches is a paid API for AI agents from vending-machine.heurist.xyz, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Lists token launches on the Heurist vending machine with launch progress details including USDC raised, queued purchases, and completion status, with optional filtering by launch state.

## Facts

- Endpoint: POST https://vending-machine.heurist.xyz/x402/launches
- 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/heurist-vending-machine-list-token-launches-d7180a3a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_paOPH4hDh0F66EJsausU2

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 heurist-vending-machine-list-token-launches-d7180a3a -d '<json body>'
```

Example prompt: Show me all the open token launches on the Heurist vending machine — I want to see which ones are still active and how much USDC each has raised so far.

## When to prefer this

Use this endpoint when you need to browse, search, or monitor token launches on the Heurist vending machine, especially when you want to filter by launch state (open, graduated, or refundable) or check fundraising progress. Prefer this over the single-token detail endpoint when you need a broad overview of multiple launches rather than deep info on one specific token.

## Known failure modes

- Invalid filter value returns an error — must be 'open', 'graduated', or 'refundable'
- Empty result set if no launches match the requested filter
- Network or payment failure if the $0.01 USDC x402 payment cannot be processed
- Service unavailable if the vending machine backend is down

## How this service works

List token launches in the vending machine. Results include the token information and launch progress (amount of USDC raised, queued, and completed purchases). Useful for searching ongoing or completed launches, or to get the token information for a specific launch.

## Output

Returns a list of token launches, each including token metadata (name, symbol, contract info), launch progress metrics (amount of USDC raised, queued purchases, completed purchases), and launch status (open, graduated, or refundable).

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "filter": {
   "enum": [
    "open",
    "graduated",
    "refundable"
   ],
   "type": "string",
   "description": "Filter launches: 'open' (not graduated, created within 14 days), 'graduated', 'refundable' (not graduated, older than 14 days). Omit to return all launches."
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/heurist-vending-machine-list-token-launches-d7180a3a/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from vending-machine.heurist.xyz](https://www.zero.xyz/host/vending-machine.heurist.xyz/llms.txt)
