# HostDeFi Token Launches Feed

> HostDeFi Token Launches Feed is a paid API for AI agents from hostdefi.com, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-13).

Returns a list of recently launched tokens on Solana (or specified chain) with market data and risk/cleanliness grades

## Facts

- Endpoint: GET https://hostdefi.com/api/v1/x402/launches
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/hostdefi-token-launches-feed-7fb7c840
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_IutDs8AnzV2JgjFtZFhfc

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 hostdefi-token-launches-feed-7fb7c840
```

Example prompt: Can you pull the latest 10 token launches on Solana from HostDeFi and tell me which ones are marked as clean and what their risk reasons are?

## When to prefer this

Use this endpoint when you need a real-time feed of newly launched tokens on Solana (or other supported chains) with built-in risk grading — particularly useful for agents performing token safety screening, launch monitoring, or DeFi research without requiring KYC or account creation. Prefer this over generic blockchain explorers when you need pre-computed cleanliness scores and authority metadata bundled with launch data.

## Known failure modes

- Invalid chain parameter returns error or empty results
- limit out of range (must be 1-20) returns validation error
- Payment failure (x402 protocol) blocks access
- No launches available returns empty array
- Network or upstream data source timeout

## How this service works

HostDeFi is a non-custodial Solana DEX. Best-route swaps through Jupiter, EVM trading across 7 chains, native bridging, and live token risk grades. No KYC, no accounts, no custody.

## Output

A JSON object with a count and array of token launch objects, each containing the chain, token address, a boolean clean flag, launch and market data objects, authority information, and an array of reasons explaining the cleanliness/risk assessment.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "chain": {
       "type": "string",
       "description": "Chain filter (default solana)"
      },
      "limit": {
       "type": "integer",
       "maximum": 20,
       "minimum": 1,
       "description": "Max launches returned (default 10)"
      }
     }
    }
   }
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "ok": true,
  "meta": {
   "plan": "x402"
  },
  "count": 1,
  "launches": [
   {
    "chain": "solana",
    "clean": false,
    "launch": {},
    "market": {},
    "address": "…",
    "authorities": {},
    "cleanReasons": [
     "…"
    ]
   }
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/hostdefi-token-launches-feed-7fb7c840/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from hostdefi.com](https://www.zero.xyz/host/hostdefi.com/llms.txt)
