x402basequality 0.55

Aggregated crypto news headlines from RSS feeds, pay-per-call via x402 on Base.

Price
0.005 USDC / call
Protocol
x402
Verified
no

What it does

This endpoint returns the latest cryptocurrency headlines aggregated from multiple RSS feed sources including CoinDesk, The Defiant, and other crypto news outlets. It is a simple GET request with no required query parameters, returning JSON with headline data.

The endpoint is hosted on httpay.xyz, a marketplace of 300+ pay-per-call APIs settled via x402 micropayments in USDC on Base L2. Each call to /api/news/crypto costs $0.005 (5000 base units of USDC with 6 decimals). No API keys or subscriptions are needed — payment is handled inline via the x402 protocol's X-PAYMENT header. The endpoint also supports MPP (Machine Payments Protocol) settlement via pathUSD on Tempo at $0.005 per call. A free demo mode is available by appending ?demo=true (limited to 10 calls per IP per hour).

The endpoint is live and returns a standard 402 challenge when called without payment credentials. It can be integrated using the x402-fetch npm package, the @httpay/mcp MCP server for Claude/Cursor, or any HTTP client that implements the x402 payment flow. The output schema indicates JSON response type, though the exact response structure beyond headlines is not fully documented in the available material.

Capabilities

crypto-news-aggregationrss-feed-aggregationx402-micropaymentusdc-base-settlementmpp-tempo-settlementno-auth-requiredjson-responsedemo-modemcp-compatible

Use cases

  • Feeding an AI agent with current crypto market news for analysis
  • Building a crypto news dashboard or aggregator application
  • Monitoring crypto headlines for trading signal generation
  • Providing context to LLM-based crypto research assistants
  • Aggregating news for sentiment analysis pipelines

Fit

Best for

  • AI agents needing real-time crypto news without API key management
  • Developers wanting pay-per-call crypto news without subscriptions
  • Quick prototyping of crypto news features with minimal setup

Not for

  • Historical crypto news archive queries
  • Full-text article retrieval (returns headlines, not full articles)
  • High-volume bulk news ingestion (micropayment per call adds up)

Quick start

# Free demo (10 calls/IP/hour):
curl "https://httpay.xyz/api/news/crypto?demo=true"

# With x402 payment (Node.js):
import { withPayment } from "x402-fetch";
const res = await withPayment(
  fetch("https://httpay.xyz/api/news/crypto"),
  wallet
);

Example

Response

{
  "source": "CoinDesk, The Defiant",
  "headlines": [
    {
      "url": "https://coindesk.com/example-article",
      "title": "Bitcoin Surges Past $70K as ETF Inflows Accelerate",
      "source": "CoinDesk",
      "published": "2025-01-15T12:00:00Z"
    },
    {
      "url": "https://thedefiant.io/example-article",
      "title": "Ethereum Layer 2 TVL Hits New Record",
      "source": "The Defiant",
      "published": "2025-01-15T11:30:00Z"
    }
  ]
}

Endpoint

Transporthttp
Protocolx402
Pay to0x5f5d6FcB315871c26F720dc6fEf17052dD984359
CurrencyUSD COIN

Quality

0.55/ 1.00

The endpoint is live (402 challenge confirmed) with clear pricing ($0.005/call USDC on Base) and basic schema info, but the actual response structure is not documented — the output example in the schema only contains the description string. The response JSON shown above is inferred from the landing page hint ('headlines: [...], source: "CoinDesk, The Defiant, ..."') and should be treated as approximate. No OpenAPI spec was accessible and /docs returns 404.

Warnings

  • Exact response JSON schema is not documented; the example response is inferred from landing page hints and may not match actual output
  • No OpenAPI spec accessible (openapi.json referenced in ai-plugin but not provided in probe)
  • Documentation page (/docs) returns 404
  • robots.txt disallows /api/ paths for crawlers, which may affect discoverability

Citations

Provenance

Indexed fromx402_bazaar
Enriched2026-04-22 01:25:03Z · anthropic/claude-opus-4.6 · v2
First seen2026-04-21
Last seen2026-04-22

Agent access