Skip to content

Latest commit

 

History

History
31 lines (28 loc) · 802 Bytes

File metadata and controls

31 lines (28 loc) · 802 Bytes

Docker Repository on Quay

es-rss

Simple RSS/Atom-Feed parser based on this awesome go library.

Running

The image is designed to scale. You can run on localy by any container runtime

e.g.: podman run -p 8080:8080 quay.io/elastifeed/es-rss:latest

Rest API

Currently there is only the /parse endpoint present.

Request

{
    "url": "{{ rss_feed_url }}",
    "from_time": "{{ last_scrape_time }}"
}

Response

[
    {
        "title": "Some Title",
        "description": "This is some article about bla...",
        "url": "Original article URL"
    },
    {
        "...": "..."
    }
]