Skip to content

Response Formats

The API supports three output formats, controlled by the output query parameter.

FormatValueDescription
JSONjson (default)Most detailed metadata for fine-grained control over rendering
RSSrssStandards-compliant RSS 2.0 feed, suitable for RSS readers or intranet components
HTMLhtmlFully marked-up HTML, suitable for embedding via iframe with minimal coding

JSON responses contain the richest metadata, including icons and image URLs that can influence visual rendering.

Terminal window
curl https://widget.slipcase.com/api/v2/feed/?apiKey=YOUR_API_KEY&output=json

RSS 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).

Terminal window
curl https://widget.slipcase.com/api/v2/feed/?apiKey=YOUR_API_KEY&output=rss

HTML 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>