# fold · x402 Market Intelligence Search

> fold · x402 Market Intelligence Search is a paid API for AI agents from x402.fold.computer, paid per call via x402, $0.02/call, status down (last checked 2026-09-15).

Searches and returns machine-readable market intelligence (news, company info, research papers, financial reports) for onchain agents via x402 micropayment protocol

## Facts

- Endpoint: POST https://x402.fold.computer/search
- Price: $0.02/call
- Payment: x402
- Status: down
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/fold-x402-market-intelligence-search-e002a81a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_SV1-R6BYEeLrrNl4FVkhN

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 fold-x402-market-intelligence-search-e002a81a -d '<json body>'
```

Example prompt: Search fold for the latest news about the Bitcoin ETF approval — give me 5 results in the news category, with highlights.

## When to prefer this

Use this endpoint when an AI agent needs structured, machine-readable market intelligence — particularly news, financial reports, company data, or research papers — and can pay per-query via x402 USDC micropayments. Prefer over general web search when onchain/financial domain specificity and structured highlight outputs are needed.

## Known failure modes

- Payment failure via x402 protocol returns 402 Payment Required
- Invalid or missing query field returns validation error
- Category value not recognized may return empty or irrelevant results
- numResults outside 1-10 range may be clamped or rejected
- Query too broad may return low-relevance highlights

## How this service works

Machine-readable market intelligence for onchain agents, served over x402.

## Output

A JSON object with a status field and a data object containing up to 10 results, each with a title, URL, published date, and text highlights. Optionally includes full page text if requested.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "query"
 ],
 "properties": {
  "text": {
   "type": "boolean",
   "description": "include full page text"
  },
  "query": {
   "type": "string",
   "description": "Search query, e.g. bitcoin ETF news"
  },
  "category": {
   "type": "string",
   "description": "news, company, research paper, financial report, etc."
  },
  "numResults": {
   "type": "number",
   "description": "1-10 results"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "status",
  "data"
 ],
 "properties": {
  "data": {
   "type": "object",
   "description": "results: title, url, publishedDate, highlights"
  },
  "status": {
   "type": "string"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/fold-x402-market-intelligence-search-e002a81a/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.fold.computer](https://www.zero.xyz/host/x402.fold.computer/llms.txt)
