GET v0.1/feed/{id}/info

Get information about a certain Feed

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

The Id of the feed

integer

Required

Body Parameters

None.

Response Information

Resource Description

FeedInfo
NameDescriptionTypeAdditional information
Id

The Feed id

integer

None.

Name

The Feed name

string

None.

LastUpdate

The update time of the last updated Source.

date

None.

TemplateSettings

Template settings for the Feed

TemplateSettings

None.

Sources

The sources for this Feed

Collection of SourceInfo

None.

LoaderScript

The loader script for this Feed

string

None.

Response Formats

application/json, text/json

Sample:
{
  "id": 1234,
  "name": "My Feed",
  "lastUpdate": "2024-04-19T14:31:33.6336354Z",
  "templateSettings": {
    "templateId": 11,
    "templateType": "Wall",
    "templateDisplayName": "Wall",
    "templateSpecificSettings": {},
    "templateFontId": 1,
    "templateFontSize": "14",
    "templateAccentColor": "#1DBCCC",
    "templateBackgroundColor": "#FF00FF",
    "templateTextColor": "#FFFFFF",
    "templatePostBackgroundColor": "#000000",
    "templateBackgroundImage": null,
    "templatePaddingPosts": null,
    "templateShowMediaType": false,
    "templateShowAuthor": false,
    "templateShowShareButton": false,
    "templateShowAuthorInitials": false
  },
  "sources": [
    {
      "id": 123,
      "type": "InstagramHashtag",
      "lastUpdate": "2024-04-19T14:31:33.6336354Z",
      "searchString": "#sweden",
      "displayName": "#sweden",
      "settings": {
        "visible": true,
        "updatesDisabled": false
      }
    }
  ],
  "loaderScript": "<script async src='https://5p4rk13.com/LiveFeed/9999999/loaderscript.js'></script><div class='sprkl-wrapper Sparkle-999999' data-enable-edit='false' data-show-scrollbars='false' data-fixed-height='false' style='height: 100%; width: 100%;'></div>"
}