Search hashtags
Use this endpoint (https://komico.edubrazeal.com/mobile_api/search_hashtags) API to access hashtags searching endpoint
Get parameters
| Field | Value | Remarks |
|---|---|---|
| query | Search keywords | E.g. technology |
| offset | Last post offset ID | This is only needed when loading posts of the pagination system. |
| session_id (Optional) | βAccess token ID | E.g. e7a4652c3231fc74761... |
| page_size | βTotal post limit for each request | Recommended: 20 |
Success response
{
"code": 200,
"message": "Results found",
"data":[
{
"id": 8254,
"posts": 47,
"tag": "technology",
"time": "1730838420",
"hashtag": "#technology",
"url": "http://example.com/search/posts?q=technology",
"total": "47"
}
]
}
Error responses
{
"code": 204,
"message": "No data found",
"data": []
}
{
"code": 400,
"message": "The search term is invalid or missing",
"data": []
}