---
title: Convert RSS to JSON API
slug: convert-rss-to-json
url: https://apyhub.com/apyhub/service/convert-rss-to-json
provider: ApyHub
categories: [Data Extraction, Developer Tools]
auth: api_key
---

# Convert RSS to JSON API

Parse RSS or Atom feeds from a file or URL into JSON. Useful for ingesting blog, news, or podcast feeds into apps and pipelines.

## Endpoints

| Method | Path | Description | Atoms |
| --- | --- | --- | --- |
| POST | `/convert/rss-file/json` | What it does Parses an uploaded RSS or Atom XML file and converts it to JSON. The request sends a b… | 150 |
| POST | `/convert/rss-url/json` | What it does Parses a remote RSS or Atom feed from a URL and returns the feed data as JSON. The req… | 150 |

## About

## What it does
RSS to JSON converts RSS and Atom feeds into JSON you can work with in your app. Send either an uploaded XML file or a remote feed URL, and get the parsed feed content back as JSON.

Use the `/file` endpoint when you already have the feed as a local `.xml` upload. Use `/url` when you want to fetch and parse a remote feed directly. Both endpoints accept an optional `detailed` query parameter, which lets you request a more detailed parsed result when you need extra structure.

This is useful when you need to ingest blog feeds, news updates, podcast feeds, or partner content into a pipeline, database, or CMS. JSON is easier to filter, store, and transform than raw RSS or Atom XML, especially when you are polling feeds on a schedule or normalizing multiple sources into one format.

RSS to JSON is a straightforward parsing utility: give it feed XML or a feed URL, and it returns a JSON response shaped for downstream processing.

## Usage

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