Feed to JSON converter
Services List
Have a Question?
Feed to JSON converter
Transform any XML feed (RSS/Atom) into JSON with attribute retention.
Feed to JSON API
Call https://api.mihajlo.mk/v1/feed2json with your token and the feed URL; we will return the entire XML structure as JSON (attributes, repeated items, etc.).
Parameters
-
token — copy the token (API Key) from your
https://mihajlo.mkaccount after signing in with Google/Gmail. - url — the absolute https:// or http:// address of the feed you want to convert (RSS, Atom, or any XML document).
https://api.mihajlo.mk/v1/feed2json?token=YOUR_TOKEN&url=https://doktori.mk/feed/
The JSON payload mirrors the XML structure (each tag becomes an object or array, attributes go under _attributes, and pure text nodes appear under _text).
Sample response:
{
"error": false,
"status_text": "OK",
"status_code": 200,
"data": {
"_attributes": {
"version": "2.0"
},
"channel": {
"title": "Доктори",
"link": "https://doktori.mk",
"item": [
{
"title": "Како да се постигне здрава и урамнотежена цревна микрофлора",
"link": "https://doktori.mk/2019/02/09/kako-da-se-postigne-zdrava-i-uramnotezhena-tsrevna-mikroflora/"
}
]
}
}
}