# RugSense Latest Launches

> RugSense Latest Launches is a paid API for AI agents from rugsense.xyz, paid per call via x402, $0.03/call, status unknown (last checked 2026-09-14).

Returns a ranked list of freshly-launched Base tokens scored on safety and momentum, with a composite score and AVOID/WATCH/HOT tier per token.

## Facts

- Endpoint: GET https://rugsense.xyz/api/launches/latest
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/rugsense-latest-launches-2041764c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_JsFk2FzOIWaIXY32kDjrM

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 rugsense-latest-launches-2041764c
```

Example prompt: Show me the top 20 freshly launched Base tokens from RugSense right now — only HOT or WATCH tier, with a safety score of at least 65.

## When to prefer this

Use this endpoint when you need a quick, pre-scored, ranked list of the newest Base token launches with rug-pull safety intelligence baked in — especially when filtering by tier (HOT/WATCH/AVOID) or minimum safety threshold, rather than analyzing a single known token.

## Known failure modes

- Invalid tier value (not HOT/WATCH/AVOID) returns an error
- Limit out of range (>50 or <1) returns a validation error
- minSafety value outside 0-100 range returns an error
- Payment not provided or insufficient USDC returns 402 Payment Required
- No launches match the filter criteria — empty list returned
- Upstream data unavailable — service may return 503

## How this service works

Scored intelligence on freshly-launched Base tokens: safety + momentum → composite score and an AVOID/WATCH/HOT decision per launch. One call returns a ranked list.

## Output

A ranked list of recently launched Base tokens, each with a safety score, momentum score, composite score, and a tier classification of AVOID, WATCH, or HOT — ordered by composite ranking.

## 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": {
      "tier": {
       "type": "string",
       "description": "Filter by tier: HOT | WATCH | AVOID"
      },
      "limit": {
       "type": "string",
       "description": "Max launches (1-50, default 20)"
      },
      "minSafety": {
       "type": "string",
       "description": "Only launches with safetyScore >= this (0-100)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/rugsense-latest-launches-2041764c/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from rugsense.xyz](https://www.zero.xyz/host/rugsense.xyz/llms.txt)
