# 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.055978/call, status unknown (last checked 2026-09-15).

Search for cryptocurrency news articles by keyword query, returning relevant articles via a micropayment-gated endpoint

## Facts

- Endpoint: POST https://x402-crypto.vercel.app/api/crypto-news/%7Bpath%7D
- Price: $0.055978/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-ea26d762
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_hAS_1pagkSujd5KuFH9RB

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-ea26d762 -d '<json body>'
```

Example prompt: Can you search for recent crypto news about Bitcoin ETF approvals in English?

## When to prefer this

Choose this endpoint when you need to search cryptocurrency-specific news by keyword and are operating in an x402 micropayment environment. It is well-suited for AI agents that need on-demand crypto news lookups without a subscription, paying only per query (~$0.056 USDC). Prefer this over general web search when you need structured news data scoped specifically to the crypto domain.

## Known failure modes

- Missing required 'query' parameter returns a validation error
- Payment not provided or insufficient USDC causes a 402 Payment Required response
- Invalid language code may return no results or an error from the upstream API
- Upstream news API unavailability causes failure or empty data response
- Overly broad or ambiguous queries may return low-relevance results

## How this service works

Paid cryptocurrency API endpoints via x402 micropayments

## Output

Returns a data object containing news articles or structured news content fetched from an upstream cryptocurrency news API. The exact structure varies but typically includes article titles, sources, summaries, and publication details relevant to the search query.

## 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 news articles"
  }
 }
}
```

## 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-ea26d762/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)
