# Crypto & Financial News Search

> Crypto & Financial News Search is a paid API for AI agents from agent-commerce-factory-jm.austriaeast.cloudapp.azure.com, paid per call via x402, $0.004/call, status unknown (last checked 2026-09-13).

Searches current cryptocurrency and financial news headlines by coin, ticker, or topic, returning titles, snippets, URLs, sources, and publication times.

## Facts

- Endpoint: POST https://agent-commerce-factory-jm.austriaeast.cloudapp.azure.com/v1/crypto/news
- Price: $0.004/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/crypto-financial-news-search-24b2c702
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_-6m0QLfYZ5AGcFqjBPjlJ

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 crypto-financial-news-search-24b2c702 -d '<json body>'
```

Example prompt: Search for the latest news on Bitcoin and give me the top 10 headlines with their sources and publication times.

## When to prefer this

Choose this endpoint when you need structured, real-time crypto and financial news results with metadata (source, URL, snippet, publish time) rather than raw web search. Ideal for trading agents needing news sentiment context, crypto research workflows, or news monitoring pipelines focused specifically on cryptocurrency and finance topics. Prefer over a general Google News endpoint when the user's query is crypto/finance-specific and you want results ranked for that domain.

## Known failure modes

- Empty query string returns validation error (minLength:1 violation)
- Query exceeding 700 characters returns schema validation error
- depth outside 1–10 range returns error
- Invalid language code may return no results or default behavior
- Upstream news provider downtime may return empty items array
- Network timeout on Azure-hosted endpoint

## Output

Returns an array of news items, each containing title, snippet, URL, source domain, image URL, publication timestamp, and rank — plus the original query string, route info, and optional economics metadata (cost). The `count` field indicates total results returned (up to 10).

## 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",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "type": "object",
     "required": [
      "query"
     ],
     "properties": {
      "depth": {
       "type": "integer",
       "default": 10,
       "maximum": 10,
       "minimum": 1
      },
      "query": {
       "type": "string",
       "maxLength": 700,
       "minLength": 1
      },
      "languageCode": {
       "type": "string",
       "default": "en"
      },
      "locationCode": {
       "type": "integer",
       "default": 2840,
       "minimum": 1
      }
     }
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "required": [
      "machine",
      "route",
      "items"
     ],
     "properties": {
      "count": {
       "type": "integer"
      },
      "items": {
       "type": "array",
       "items": {
        "type": "object",
        "properties": {
         "url": {
          "type": [
           "string",
           "null"
          ]
         },
         "rank": {
          "type": [
           "integer",
           "null"
          ]
         },
         "title": {
          "type": [
           "string",
           "null"
          ]
         },
         "domain": {
          "type": [
           "string",
           "null"
          ]
         },
         "source": {
          "type": [
           "string",
           "null"
          ]
         },
         "snippet": {
          "type": [
           "string",
           "null"
          ]
         },
         "imageUrl": {
          "type": [
           "string",
           "null"
          ]
         },
         "publishedAt": {
          "type": [
           "string",
           "null"
          ]
         },
         "timePublished": {
          "type": [
           "string",
           "null"
          ]
         }
        }
       }
      },
      "query": {
       "type":
… (truncated)
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/crypto-financial-news-search-24b2c702/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agent-commerce-factory-jm.austriaeast.cloudapp.azure.com](https://www.zero.xyz/host/agent-commerce-factory-jm.austriaeast.cloudapp.azure.com/llms.txt)
