---
title: Convert RSS to JSON API
slug: convert-rss-to-json
url: https://apyverse.com/apyhub/service/convert-rss-to-json
provider: ApyHub
categories: [Data Extraction, Developer Tools, File Conversion]
tags: [rss, atom, xml-parsing, feed-conversion, json-conversion]
auth: api_key
---

# Convert RSS to JSON API

Parse RSS or Atom feeds from a file or URL into JSON. Useful for feed ingestion, content monitoring, and automation pipelines.

## Endpoints

| Method | Path | Description | Atoms |
| --- | --- | --- | --- |
| POST | `convert/rss-file/json` | What it does Uploads an RSS or Atom XML file and parses it into JSON. The request includes the file… | 10 |
| POST | `convert/rss-url/json` | What it does Parses a remote RSS or Atom feed from a URL and returns the converted JSON response. T… | 10 |

## About

## What it does
RSS to JSON Converter turns RSS and Atom feeds into JSON from either an uploaded XML file or a remote feed URL. Send the feed, get back a JSON object you can process in your app, store in a database, or pass into downstream automation.

Use the `/file` endpoint when you already have an RSS or Atom XML file. It accepts a binary `file` in the request body and an optional `detailed` query flag. Use `/url` when the feed is hosted remotely: provide a `url` in the request body and the same optional `detailed` flag.

The response schema is flexible JSON (`additionalProperties: true`), so the service is built to return the parsed feed structure rather than a fixed, narrow payload. That makes it a good fit for feed ingestion pipelines, content monitoring jobs, newsletter aggregation, and internal tooling that needs to read publication metadata and entries from RSS or Atom sources.

## Usage

Authenticate with an ApyHub API key in the `apy-token` header.
Full docs and a live playground: https://apyverse.com/apyhub/service/convert-rss-to-json
