Skip to content
research · developer · research · rss · atom · feed · news

Feed normalization

Fetch and normalize public RSS or Atom feeds into stable structured JSON entries for agents and research workflows.

$0.01 USDCBase + Solanax402 v2POST
Pay $0.01 USDC and run in your browserView free result sample

Endpoint

https://apiacre.com/v1/research/feed-normalize

Send the JSON body below. An unpaid request returns HTTP 402 with a PAYMENT-REQUIRED header; an x402-compatible buyer signs the requirement and retries with PAYMENT-SIGNATURE.

Pay $0.01 USDC and run in your browser

Official Coinbase agent path

Coinbase Agentic Wallet can satisfy this x402 request in one command. Running it may pay automatically, so --max-amount is fixed to $0.01 USDC in atomic units. Copying the command does not install, authenticate, sign, or pay; review the request and use a separate low-value wallet before running it.

npx --yes awal@latest x402 pay https://apiacre.com/v1/research/feed-normalize \
  -X POST \
  -d '{"url":"https://hnrss.org/frontpage"}' \
  --max-amount 10000 \
  --json

Coinbase pay-for-service documentation · Buyer setup and wallet safety

Alternative third-party AgentCash commands

Run check first without payment. Its fetch command may automatically pay up to the exact listed price.

npx --yes agentcash@latest check https://apiacre.com/v1/research/feed-normalize
npx --yes agentcash@latest fetch https://apiacre.com/v1/research/feed-normalize \
  --method POST \
  --header 'content-type: application/json' \
  --body '{"url":"https://hnrss.org/frontpage"}' \
  --payment-protocol x402 \
  --payment-network base \
  --max-amount 0.010

AgentCash CLI documentation

Input example

{
  "url": "https://hnrss.org/frontpage"
}

Response shape

View free static sample JSON

{
  "request_id": "018f1f54-7f38-7ba2-8dc3-5f90272d9f1a",
  "service": "research.feed-normalize",
  "version": "1",
  "data": {
    "url": "https://hnrss.org/frontpage",
    "title": "Hacker News: Front Page",
    "entryCount": 2,
    "entries": [
      {
        "title": "Example engineering launch",
        "url": "https://example.com/posts/engineering-launch",
        "published": "Tue, 11 Aug 2026 04:00:00 +0000",
        "summary": "A bounded example entry normalized from a public RSS item.",
        "id": "https://example.com/posts/engineering-launch",
        "publishedAt": "2026-08-11T04:00:00+00:00"
      },
      {
        "title": "Example API update",
        "url": "https://example.com/posts/api-update",
        "published": "Tue, 11 Aug 2026 03:00:00 +0000",
        "summary": "A second demonstration item with the same stable output fields.",
        "id": "https://example.com/posts/api-update",
        "publishedAt": "2026-08-11T03:00:00+00:00"
      }
    ]
  },
  "meta": {
    "duration_ms": 42,
    "cached": false,
    "sources": [],
    "warnings": [],
    "next_actions": []
  }
}

Try the payment challenge

curl -i -X POST 'https://apiacre.com/v1/research/feed-normalize' \
  -H 'content-type: application/json' \
  --data '{"url":"https://hnrss.org/frontpage"}'