Fetch upto 30 stories in timeline from followed users.
Parameter | Required? |
---|---|
access_token |
YES |
Example cURL Request
curl -X GET \
'http://localhost:3001/api/stories?access_token=4A4xHpx8nTxz29y3EzPy'
Example Response
Stories present
Status: HTTP 200
Body:
[
{
"uuid": "test-unique-story-uid2",
"title": "Story #2",
"background_thumb_url": "/uploads/story/title_background_image/2/test-unique-story-uid2_th.jpg",
"background_url": "/uploads/story/title_background_image/2/test-unique-story-uid2_med.jpg",
"file_url": "/uploads/story/file/2/test-unique-story-uid2.mov",
"mood": "Happy",
"user": {
"id": "c6d53d8f-0fb3-4012-8fe5-a09f9cce6dcc",
"username": "user1",
"picture_thumb_url": "default-mermaid.png",
"verified": false,
"public_shuttersong": true,
"full_name": null,
"username_color": null
},
"created_at": "2017-05-22T04:13:47-04:00"
},
{
"uuid": "test-unique-story-uid16",
"title": "Story #16",
"background_thumb_url": "/uploads/story/title_background_image/16/test-unique-story-uid16_th.jpg",
"background_url": "/uploads/story/title_background_image/16/test-unique-story-uid16_med.jpg",
"file_url": "/uploads/story/file/16/test-unique-story-uid16.mov",
"mood": "Attracted",
"user": {
"id": "2715d6d3-8e7b-47da-8290-12677bdb5a5d",
"username": "user3",
"picture_thumb_url": "default-mermaid.png",
"verified": false,
"public_shuttersong": true,
"full_name": null,
"username_color": null
},
"created_at": "2017-05-22T04:58:15-04:00"
},
{
"uuid": "test-unique-story-uid4",
"title": "Story #4",
"background_thumb_url": "/uploads/story/title_background_image/4/test-unique-story-uid4_th.jpg",
"background_url": "/uploads/story/title_background_image/4/test-unique-story-uid4_med.jpg",
"file_url": "/uploads/story/file/4/test-unique-story-uid4.mov",
"mood": "Happy",
"user": {
"id": "23d61e45-8ff2-4827-878c-f133932d4be6",
"username": "user2",
"picture_thumb_url": "default-mermaid.png",
"verified": false,
"public_shuttersong": true,
"full_name": null,
"username_color": null
},
"created_at": "2017-05-22T04:16:01-04:00"
}
]