# Full-Text RSS API
> Turn any web page into clean, readable article text and turn any RSS or Atom feed into a structured, full-text feed. Extract the main article from a URL (title, author, published date, source, lead image, reading time, word count, plain text and cleaned HTML) using readability extraction, parse a feed into its entries, and — the signature feature — produce a full-text feed where every entry carries the complete extracted article instead of just the summary. Only public http/https URLs are accepted and private or internal hosts are blocked. Every endpoint accepts input via the query string or the request body and returns lean JSON. Ideal for read-it-later apps and newsreaders, newsletters and digests, summarisers and RAG pipelines, content monitoring and archiving.

## Authentication
All requests require your oanor API key in the `x-oanor-key` header. Get one at https://www.oanor.com/developer/keys.

```bash
curl -H "x-oanor-key: oanor_live_…" "https://api.oanor.com/fulltextrss-api/..."
```

## Pricing
- **Free** (Free) — 8,000 calls/Mo, 2 req/s
- **Basic** ($9/Mo) — 90,000 calls/Mo, 8 req/s
- **Pro** ($26/Mo) — 650,000 calls/Mo, 20 req/s
- **Mega** ($64/Mo) — 3,500,000 calls/Mo, 45 req/s

## Endpoints

### Full-Text RSS

#### `GET /v1/extract` — Extract readable article from a URL

**Parameters:**
- `url` (query, required, string) — Public article URL Example: `https://en.wikipedia.org/wiki/RSS`
- `text_only` (query, optional, string) — Omit content_html Example: `true`

**Example:**
```bash
curl -H "x-oanor-key: $KEY" \
  "https://api.oanor.com/fulltextrss-api/v1/extract?url=https%3A%2F%2Fen.wikipedia.org%2Fwiki%2FRSS&text_only=true"
```

#### `GET /v1/feed` — Parse an RSS/Atom feed

**Parameters:**
- `url` (query, required, string) — Feed URL Example: `https://feeds.bbci.co.uk/news/rss.xml`
- `limit` (query, optional, string) — Max entries 1..100 Example: `25`

**Example:**
```bash
curl -H "x-oanor-key: $KEY" \
  "https://api.oanor.com/fulltextrss-api/v1/feed?url=https%3A%2F%2Ffeeds.bbci.co.uk%2Fnews%2Frss.xml&limit=25"
```

#### `GET /v1/fulltext` — Feed with full article text per entry

**Parameters:**
- `url` (query, required, string) — Feed URL Example: `https://feeds.bbci.co.uk/news/rss.xml`
- `limit` (query, optional, string) — Max entries 1..10 Example: `5`
- `text_only` (query, optional, string) — Omit content_html Example: `true`

**Example:**
```bash
curl -H "x-oanor-key: $KEY" \
  "https://api.oanor.com/fulltextrss-api/v1/fulltext?url=https%3A%2F%2Ffeeds.bbci.co.uk%2Fnews%2Frss.xml&limit=5&text_only=true"
```


---
Marketplace page: https://www.oanor.com/api/fulltextrss-api
OpenAPI spec: https://www.oanor.com/api/fulltextrss-api/openapi.json
