Skip to content
This repository was archived by the owner on Sep 8, 2024. It is now read-only.

Latest commit

 

History

History
26 lines (19 loc) · 473 Bytes

File metadata and controls

26 lines (19 loc) · 473 Bytes

news Endpoint

The news endpoint retrieves a sorted feed from blog.plug.dj.

Endpoint

news

Method

GET

Data returned

{
    'data': [{              // Contains the requested data
        'desc': 'xxxxxx',   // Short preview of the article
        'title': 'xxxx',    // Title of the article
        'href': 'xxxx'      // Link to the article (normally blog.plug.dj)
    }],
    'meta': {},
    'status': 'ok',
    'time': 'xx.xxxxxxxxxxx'
}