# x402 Crypto News Search API

> x402 Crypto News Search API is a paid API for AI agents from x402-crypto.vercel.app, paid per call via x402, $0.146272/call, status unknown (last checked 2026-09-15).

Searches and retrieves cryptocurrency news articles matching a query, delivered via x402 micropayment-gated API

## Facts

- Endpoint: POST https://x402-crypto.vercel.app/api/crypto-news16/%7Bpath%7D
- Price: $0.146272/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/x402-crypto-news-search-api-ae0e4ceb
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_AJ7JhlbnvqD4FuR7o7mnC

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 x402-crypto-news-search-api-ae0e4ceb -d '<json body>'
```

Example prompt: Can you search for the latest English-language crypto news about Bitcoin ETF approvals?

## When to prefer this

Use this endpoint when an agent needs to search for cryptocurrency-related news articles by keyword or topic, especially when a pay-per-use model is acceptable and the query is ad-hoc rather than requiring a standing subscription. Prefer this over general web search when focused, structured crypto news results are needed.

## Known failure modes

- Invalid or missing 'query' parameter returns an error
- Payment not processed correctly via x402 results in 402 Payment Required response
- Upstream news API unavailable causes empty or error response
- Unsupported language code may return no results or an error
- Very broad or ambiguous queries may return loosely related or irrelevant articles

## How this service works

Paid cryptocurrency API endpoints via x402 micropayments

## Output

Returns a data payload containing news articles or headlines matching the search query, sourced from cryptocurrency news aggregators. The structure of the response varies but wraps results in a top-level 'data' object.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "query"
 ],
 "properties": {
  "lang": {
   "type": "string",
   "description": "Language code (e.g. en)"
  },
  "query": {
   "type": "string",
   "description": "Search query for crypto news"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "data": {
   "type": "object",
   "description": "Response payload from the upstream API (structure varies by endpoint)"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/x402-crypto-news-search-api-ae0e4ceb/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402-crypto.vercel.app](https://www.zero.xyz/host/x402-crypto.vercel.app/llms.txt)
