GET v0.1/feed/{id}/item/originalIdentifier?originalIdentifier={originalIdentifier}

Get an Item

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

The Id of the Feed

integer

Required

originalIdentifier

The OriginalIdentifier of the Item

string

Required

Body Parameters

None.

Response Information

Resource Description

Item
NameDescriptionTypeAdditional information
Id

The Item id

integer

None.

OriginalIdentifier

The original identified for this item. (For example the Instagram item id)

string

None.

CreatedTime

The time this item was created (at the source)

date

None.

MediaUrl

A URL to the media associated with this item

string

None.

VideoUrl

A URL to the video associated with this item (not set if item isn't a video)

string

None.

Text

The item text

string

None.

Title

The item title

string

None.

Url

A URL to this item

string

None.

UserId

The id of the user that posted this item

string

None.

UserProfilePictureUrl

A URL to the profile picture of the user that posted this item

string

None.

UserRealName

The real name of the user that posted this item

string

None.

Username

The username of the user that posted this item

string

None.

HighLighted

boolean

None.

Pinned

boolean

None.

Status

The status of this item

ItemStatus

None.

SourceId

The source Id for this item

integer

None.

SourceType

The source type for this item

SourceType

None.

CallToActionUrl

The Call to Action URL for this item

string

None.

CallToActionText

The Call to Action Text for this item

string

None.

Response Formats

application/json, text/json

Sample:
{
  "id": 12345,
  "originalIdentifier": "axfdsd334",
  "createdTime": "2024-04-19T01:31:54.9458477Z",
  "mediaUrl": "http://urltomedia.com",
  "videoUrl": null,
  "text": "This is a text",
  "title": "This is a title",
  "url": "http://urltoitem.com",
  "userId": "abc123",
  "userProfilePictureUrl": "http://urltoprofilepicture.com",
  "userRealName": "Joe Toe",
  "username": "joethetoe",
  "highLighted": false,
  "pinned": false,
  "status": "Approved",
  "sourceId": 1,
  "sourceType": "InstagramHashtag",
  "callToActionUrl": "http://linktoclick.com",
  "callToActionText": "Click Me"
}