# Feed Parser

Any RSS or Atom feed URL, parsed to normalized JSON — the plumbing under every feed reader and digest bot.

- Method: `GET`
- Path: `/v1/utility/feed`

**Parameters**

| Name | Type | | Description |
|---|---|---|---|
| `feed_url` | string | required | The feed's URL. |
| `max_age` | integer (seconds) | optional | Ask for data no older than this. Clamped to the product's own floor, so it can narrow the window but never force a refresh on every call. |

**Example request**

```bash
curl https://api.diraz.ae/v1/utility/feed \
  -H "Authorization: Bearer drz_live_…"
```

**Example response**

```json
{
  "data": {
    "feedUrl": "https://hnrss.org/frontpage",
    "title": "Hacker News: Front Page",
    "format": "rss",
    "items": [
      {
        "title": "Show HN: A thing people like",
        "url": "https://example.com/thing",
        "publishedAt": "2026-08-22T03:14:00.000Z",
        "summary": "377 points, 128 comments"
      }
    ]
  },
  "meta": { "request_id": "req_7Q2fK4mZ", "as_of": "2026-08-22T04:05:00.000Z", "age_seconds": 42, "next_update_at": "2026-08-22T04:20:00.000Z" }
}
```