# x402station.io Catalog Decoys

> x402station.io Catalog Decoys is a paid API for AI agents from x402station.io, paid per call via x402, $0.005/call, status down (last checked 2026-09-16).

Returns a list of known-bad x402 endpoints flagged with critical signals (dead, zombie, decoy pricing) for use as a local agent blacklist

## Facts

- Endpoint: POST https://x402station.io/api/v1/catalog/decoys
- Price: $0.005/call
- Payment: x402
- Status: down
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/x402station-io-5934dad5
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_lS5rd9AaFCz237Y69YFzz

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 x402station-io-5934dad5 -d '<json body>'
```

Example prompt: Pull the current x402station.io decoy catalog — I want a fresh blacklist of all endpoints flagged as dead, zombie, or extreme-priced decoys so my agent never accidentally pays one of them.

## When to prefer this

Use this endpoint when an AI agent needs to proactively build or refresh a local blacklist of known-bad x402 endpoints before routing payments, rather than checking individual URLs one at a time. Prefer this over the Preflight endpoint when you want bulk offline filtering rather than real-time per-URL evaluation.

## Known failure modes

- Empty or malformed POST body beyond spec may return 400
- Service may return truncated results for very large catalogs (originalSize indicator present)
- Network timeout if catalog is large
- 402 if prepaid credits are exhausted
- Webhook URL provided but unreachable may cause silent webhook failure

## How this service works

Searchable catalog of x402 endpoint risk signals; scam-like decoys, zombies, and price-traps flagged.

## Output

A list of x402 endpoint URLs flagged with one or more critical signals such as 'dead', 'zombie', or 'decoy_price_extreme', along with CDP-derived settlement counts and recency data suitable for populating a local agent blacklist.

## Example request

```json
{}
```

## 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",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "type": "object",
     "properties": {}
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "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/x402station-io-5934dad5/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402station.io](https://www.zero.xyz/host/x402station.io/llms.txt)
