Get Stream Item¶
This endpoint returns the details of an item within stream.
Request¶
GET https://v2.api.uberflip.com/streams/{streamId}/items/{itemId}
| Path Parameters | Description |
|---|---|
| streamId | The unique identifier of the stream |
| itemId | The unique identifier of the item |
Response¶
| Body Parameters | Type | Description |
|---|---|---|
| stream_id | Integer | The stream identifier |
| item_id | Integer | The hub identifier |
| ordinal | Integer | The ordinal of the item within the stream |
Examples¶
curl -H "Authorization: Bearer [Token]" \
-i https://v2.api.uberflip.com/streams/17359/items/14231583
Sample response:
HTTP/1.1 200 OK
Content-Type: application/json
{
"stream_id": 17359,
"item_id": 14231583,
"ordinal": 2
}