Response Formats
The API supports three output formats, controlled by the output query parameter.
| Format | Value | Description |
|---|---|---|
| JSON | json (default) | Most detailed metadata for fine-grained control over rendering |
| RSS | rss | Standards-compliant RSS 2.0 feed, suitable for RSS readers or intranet components |
| HTML | html | Fully marked-up HTML, suitable for embedding via iframe with minimal coding |
JSON (default)
Section titled “JSON (default)”JSON responses contain the richest metadata, including icons and image URLs that can influence visual rendering.
curl https://widget.slipcase.com/api/v2/feed/?apiKey=YOUR_API_KEY&output=jsonRSS output follows the RSS 2.0 standard with the addition of an image per item. This allows the API to be plugged directly into an RSS reader or an inbuilt RSS component within your intranet (e.g. a SharePoint web-part).
curl https://widget.slipcase.com/api/v2/feed/?apiKey=YOUR_API_KEY&output=rssHTML output can be embedded directly into your application via an iframe with almost no coding required, at the expense of visual customisation.
<iframe src="https://widget.slipcase.com/api/v2/feed?apiKey=YOUR_API_KEY&output=html" style="border: 0px #ffffff none;" name="slipcaseFeed" scrolling="no" frameborder="1" marginheight="0px" marginwidth="0px" height="400px" width="600px" allowfullscreen></iframe>