# Feed
# Landing page Feed
# Resource URL
https://humtog.com/api/feed
# Resource Method
GET
# Params
| Name | Required | Type | Description |
|---|---|---|---|
page | Yes | integer | Current page, this uses infinite scroll |
exclude_liked_submissions | No | boolean | Default to 0 |
exclude_bookmarked_submissions | No | boolean | Default to 0 |
include_nsfw_submissions | No | boolean | Default to 0 |
filter | Yes | string | all or subscribed. Default to all |
submissions_type | Yes | string | text, link, img or all. Default to all |
sort | Yes | string | all, serious or relaxed. Default to all |
# Example Response
{
"data": [
{
"id": 15,
"slug": "channelSlug",
"channel_id": 1,
"channel_name": "channelName",
"channel_title": "channelTitle",
"location": {
...
},
...
},
],
"links": {
"first": "https://humtog.com/api/feed?page=1",
"last": null,
"prev": null,
"next": "https://humtog.com/api/feed?page=2"
},
"meta": {
"current_page": 1,
"from": 1,
"path": "https://humtog.com/api/feed",
"per_page": 15,
"to": 15
}
}