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

Searches and retrieves cryptocurrency news articles based on a user-supplied query, delivered via x402 micropayment-gated endpoint

## Facts

- Endpoint: POST https://x402-crypto.vercel.app/api/crypto-news54/%7Bpath%7D
- Price: $0.142946/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-8fb19f31
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Qk-MpOwM05yuyCUmRgmhj

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

Example prompt: Search for the latest crypto news about Ethereum layer-2 scaling in English and give me a summary of what's happening.

## When to prefer this

Choose this endpoint when an agent needs to search for cryptocurrency or blockchain news by keyword or topic, especially within an x402 micropayment-enabled workflow. It is well-suited for real-time news retrieval tasks where the agent is operating in a pay-per-call model and needs fresh, query-specific crypto journalism rather than price data or on-chain metrics.

## Known failure modes

- Missing required `query` field returns a validation error
- Payment not fulfilled results in HTTP 402 response blocking access
- Upstream news API unavailable causes empty or error response
- Invalid language code may return no results or default to a fallback language
- Very niche or misspelled query terms may return zero results

## How this service works

Paid cryptocurrency API endpoints via x402 micropayments

## Output

Returns a data payload containing news articles or summaries matching the search query, sourced from upstream cryptocurrency news feeds. The structure of the response varies but is wrapped 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-8fb19f31/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)
