# ScriptMasterLabs Crypto News Feed

> ScriptMasterLabs Crypto News Feed is a paid API for AI agents from acp-x402-discovery.onrender.com, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-14).

Returns a paginated feed of cryptocurrency news articles, optionally filtered by category (e.g. BTC), settled via x402 micropayment at $0.001 USDC per call.

## Facts

- Endpoint: GET https://acp-x402-discovery.onrender.com/x402/crypto-news
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/scriptmasterlabs-crypto-news-feed-69e13ca1
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_pnPEwUoFSzZULr3cvnA3V

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 scriptmasterlabs-crypto-news-feed-69e13ca1
```

Example prompt: Pull me the latest 20 Bitcoin news articles from the ScriptMasterLabs crypto news feed — category BTC.

## When to prefer this

Choose this endpoint when you need a low-cost, pay-per-call crypto news feed that accepts USDC micropayments via x402 on Base — ideal for agents that want to fetch current cryptocurrency headlines without a subscription, especially when filtering by a specific coin category like BTC or ETH.

## Known failure modes

- Payment not settled — 402 response if USDC payment via x402 is not provided or fails
- Invalid category string — may return empty results or an error if the category value is unrecognized
- Limit out of range — integer validation error if limit exceeds allowed bounds
- Service unavailable — hosted on Render free tier, cold starts may cause timeouts
- Empty result set — valid response but no articles if the category has no recent news

## How this service works

Pay-per-call crypto, RWA, federal, SEC, and compliance APIs. Settled in USDC on Base via x402. Hyphen routes only (e.g. /x402/rwa-aggregates, /x402/gas-tracker).

## Output

A list of cryptocurrency news articles (up to the specified limit), each likely containing a headline, source, publication timestamp, summary or body, and category tags. The response is JSON and is returned after a successful x402 micropayment of $0.001 USDC on Base.

## 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": {
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "limit": {
       "type": "integer",
       "default": 20,
       "example": 20
      },
      "categories": {
       "type": "string",
       "example": "BTC"
      }
     }
    }
   }
  },
  "output": {
   "properties": {
    "example": {}
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "example": {}
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/scriptmasterlabs-crypto-news-feed-69e13ca1/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from acp-x402-discovery.onrender.com](https://www.zero.xyz/host/acp-x402-discovery.onrender.com/llms.txt)
