# DeepSearch Crypto News API

> DeepSearch Crypto News API is a paid API for AI agents from x402.deepsearch.com, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-14).

Fetches recent news articles for a given cryptocurrency symbol (e.g. BTC, ETH) from DeepSearch's crypto news feed

## Facts

- Endpoint: GET https://x402.deepsearch.com/v1/context/crypto/%7Bsymbol%7D/news
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/deepsearch-crypto-news-api-b5501174
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_r3zWMOdsjh2m6FsRwCAEE

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 deepsearch-crypto-news-api-b5501174
```

Example prompt: Can you pull the latest news articles for BTC from DeepSearch's crypto news feed?

## When to prefer this

Use this endpoint when you need up-to-date news headlines and press coverage for a specific cryptocurrency token and want pay-per-query pricing (USDC on Base Mainnet) without a subscription commitment. Best for agents needing lightweight, on-demand crypto news enrichment rather than bulk historical financial data.

## Known failure modes

- Missing or invalid symbol parameter returns a 400 error
- Unknown or unsupported crypto symbol may return an empty articles array
- Payment not completed (x402 protocol) results in a 402 Payment Required response
- Network or upstream service unavailable returns a 503 error
- Rate limiting or quota exceeded may return a 429 error

## How this service works

Up to 10 years of financials + 3 years of daily price history for all 2,000+ KRX stocks. Pay-per-query with USDC on Base Mainnet — no subscription.

## Output

A JSON object containing the queried symbol and an array of news articles, each with a title, press/publication name, and published date. For example: {symbol: 'BTC', articles: [{title: '...', press_name: 'CoinDesk', published_at: '2026-05-29'}]}.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "symbol": "BTC"
  }
 }
}
```

## 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"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "symbol"
     ],
     "properties": {
      "symbol": {
       "type": "string"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "symbol": "BTC",
  "articles": [
   {
    "title": "Bitcoin hits ATH",
    "press_name": "CoinDesk",
    "published_at": "2026-05-29"
   }
  ]
 }
}
```

## More

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