User timeline feed

Use this endpoint (https://komico.edubrazeal.com/mobile_api/feeds) to get posts for the user's timeline.


Get parameters

Field Value Remarks
offset Last post offset ID Only needed for pagination when loading more posts.
session_id ​Access token ID E.g. 5gb8dd28fc11a6e4b90...
page_size ​Number of posts per request Recommended: 20

Success response

{
        "code": 200,
        "message": "Feed loaded successfully",
        "data": {
            "feeds": [
                {
                    "id": 412,
                    "user_id": 5,
                    "text": "having a great day",
                    "type": "text",
                    "replys_count": "0",
                    "reposts_count": "0",
                    "likes_count": "0",
                    "status": "active",
                    "topic_id": 0,
                    "target": "publication",
                    "og_data": "",
                    "time": "5 hours ago",
                    "offset_id": 28,
                    "is_repost": false,
                    "is_reposter": false,
                    "attrs": "",
                    "advertising": false,
                    "time_raw": "1730829836",
                    "og_text": "having a great day",
                    "og_image": "assets/images/logo.png",
                    "url": "http://komico.loc/topic/412",
                    "can_delete": true,
                    "media": [],
                    "is_owner": false,
                    "has_liked": false,
                    "has_saved": false,
                    "has_reposted": false,
                    "reply_to": [],
                    "owner": {
                        "id": null,
                        "url": null,
                        "avatar": null,
                        "username": null,
                        "name": null,
                        "verified": null
                    }
                },
                {
                    "id": 411,
                    "user_id": 5,
                    "text": "",
                    "type": "gif",
                    "replys_count": "0",
                    "reposts_count": "0",
                    "likes_count": "0",
                    "status": "active",
                    "topic_id": 0,
                    "target": "publication",
                    "og_data": "",
                    "time": "6 hours ago",
                    "offset_id": 27,
                    "is_repost": false,
                    "is_reposter": false,
                    "attrs": "",
                    "advertising": false,
                    "time_raw": "1730829206",
                    "og_text": "",
                    "og_image": "assets/images/logo.png",
                    "url": "http://komico.loc/topic/411",
                    "can_delete": true,
                    "media": [
                        {
                            "id": 24,
                            "pub_id": 411,
                            "type": "gif",
                            "src": "https://media3.giphy.com/media/IdmZ0ECRI5OzJZwEpT/giphy.gif",
                            "json_data": "[]",
                            "time": "1730829206",
                            "x": []
                        }
                    ],
                    "is_owner": false,
                    "has_liked": false,
                    "has_saved": false,
                    "has_reposted": false,
                    "reply_to": [],
                    "owner": {
                        "id": null,
                        "url": null,
                        "avatar": null,
                        "username": null,
                        "name": null,
                        "verified": null
                    },
                    "gif": null
                }
            ]
        }
    }
    

Error responses

{
        "code": 401,
        "data": [],
        "message": "Unauthorized Access"
    }
    
{
        "message": "No data found",
        "code": 204,
        "data": []
    }