{"openapi":"3.1.0","info":{"title":"Full-Text RSS API","version":"1.0.0","description":"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.","contact":{"name":"PremiumApi","url":"https://www.oanor.com/by/premiumapi"}},"servers":[{"url":"https://api.oanor.com/fulltextrss-api","description":"oanor gateway"}],"tags":[{"name":"Full-Text RSS"}],"components":{"securitySchemes":{"oanorKey":{"type":"apiKey","in":"header","name":"x-oanor-key","description":"Get your key at https://www.oanor.com/developer/keys"}}},"security":[{"oanorKey":[]}],"paths":{"/v1/extract":{"get":{"operationId":"get_v1_extract","tags":["Full-Text RSS"],"summary":"Extract readable article from a URL","description":"","parameters":[{"name":"url","in":"query","required":true,"description":"Public article URL","schema":{"type":"string"},"example":"https://en.wikipedia.org/wiki/RSS"},{"name":"text_only","in":"query","required":false,"description":"Omit content_html","schema":{"type":"string"},"example":"true"}],"security":[{"oanorKey":[]}],"responses":{"200":{"description":"OK"},"401":{"description":"Missing or invalid x-oanor-key header"},"402":{"description":"Active subscription required"},"429":{"description":"Rate-limit or monthly quota reached"},"502":{"description":"Upstream did not respond"}}}},"/v1/feed":{"get":{"operationId":"get_v1_feed","tags":["Full-Text RSS"],"summary":"Parse an RSS/Atom feed","description":"","parameters":[{"name":"url","in":"query","required":true,"description":"Feed URL","schema":{"type":"string"},"example":"https://feeds.bbci.co.uk/news/rss.xml"},{"name":"limit","in":"query","required":false,"description":"Max entries 1..100","schema":{"type":"string"},"example":"25"}],"security":[{"oanorKey":[]}],"responses":{"200":{"description":"OK"},"401":{"description":"Missing or invalid x-oanor-key header"},"402":{"description":"Active subscription required"},"429":{"description":"Rate-limit or monthly quota reached"},"502":{"description":"Upstream did not respond"}}}},"/v1/fulltext":{"get":{"operationId":"get_v1_fulltext","tags":["Full-Text RSS"],"summary":"Feed with full article text per entry","description":"","parameters":[{"name":"url","in":"query","required":true,"description":"Feed URL","schema":{"type":"string"},"example":"https://feeds.bbci.co.uk/news/rss.xml"},{"name":"limit","in":"query","required":false,"description":"Max entries 1..10","schema":{"type":"string"},"example":"5"},{"name":"text_only","in":"query","required":false,"description":"Omit content_html","schema":{"type":"string"},"example":"true"}],"security":[{"oanorKey":[]}],"responses":{"200":{"description":"OK"},"401":{"description":"Missing or invalid x-oanor-key header"},"402":{"description":"Active subscription required"},"429":{"description":"Rate-limit or monthly quota reached"},"502":{"description":"Upstream did not respond"}}}}},"x-oanor-pricing":[{"slug":"free","name":"Free","price_cents_month":0,"monthly_call_quota":8000,"rps_limit":2,"hard_limit":true},{"slug":"basic","name":"Basic","price_cents_month":850,"monthly_call_quota":90000,"rps_limit":8,"hard_limit":true},{"slug":"pro","name":"Pro","price_cents_month":2600,"monthly_call_quota":650000,"rps_limit":20,"hard_limit":true},{"slug":"mega","name":"Mega","price_cents_month":6400,"monthly_call_quota":3500000,"rps_limit":45,"hard_limit":true}],"x-oanor-marketplace-url":"https://www.oanor.com/api/fulltextrss-api"}