# onchain.wick.pics Multi-Chain Token Safety Dataset API

> onchain.wick.pics Multi-Chain Token Safety Dataset API is a paid API for AI agents from onchain.wick.pics, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-14).

Retrieves paginated token safety and rug/honeypot check records from a named dataset covering PulseChain, Base, Monad, and BSC

## Facts

- Endpoint: GET https://onchain.wick.pics/v1/dataset
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/onchain-wick-pics-multi-chain-token-safety-dataset-api-2548ec23
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ewzbJII66hmIol3PFz_ZT

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 onchain-wick-pics-multi-chain-token-safety-dataset-api-2548ec23
```

Example prompt: Pull the last 50 rows from the 'pulsechain_safety' dataset for tokens scanned between 2025-01-01 and 2025-06-01 so I can review rug and honeypot verdicts for my trading bot.

## When to prefer this

Choose this endpoint when you need token safety data for PulseChain specifically (which GoPlus and Honeypot.is do not cover), or when you need bulk/paginated safety records across Base, Monad, or BSC for bot enrichment, historical analysis, or batch screening rather than a single real-time token lookup.

## Known failure modes

- Missing or invalid 'name' parameter returns an error since it is required
- Unknown dataset name returns empty results or a 404-style error
- Invalid ISO date format in 'from'/'to' causes a parsing error
- Offset beyond dataset size returns empty result set
- Payment not provided or invalid results in a 402 Payment Required response
- Rate limiting or quota exhaustion may return 429 errors

## How this service works

Rug & honeypot safety checks for any token — across PulseChain (which GoPlus & Honeypot.is don't cover), plus Base, Monad & BSC. 0–100 safety verdicts with evidence, fresh-pool rug radar & exit-safety, for agents, bots & traders. Free to start; pay-per-call via x402.

## Output

Returns a paginated list of token safety records from the specified named dataset, including 0–100 safety scores, rug/honeypot verdicts, evidence flags, fresh-pool risk signals, and exit-safety indicators, filtered by optional date range and paginated via limit/offset.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "name"
 ],
 "properties": {
  "to": {
   "type": "string",
   "description": "ISO date filter"
  },
  "from": {
   "type": "string",
   "description": "ISO date filter"
  },
  "name": {
   "type": "string",
   "description": "Dataset name (see /api/v1/dataset)"
  },
  "limit": {
   "type": "string",
   "description": "Max rows"
  },
  "offset": {
   "type": "string",
   "description": "Row offset"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/onchain-wick-pics-multi-chain-token-safety-dataset-api-2548ec23/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from onchain.wick.pics](https://www.zero.xyz/host/onchain.wick.pics/llms.txt)
