API Docs

v1.0.0Latest
GET

Get HashTags Feed

Retrieve hashtags feed for instagram.

Endpoint
GET /ask/ig/hashtag/feed?hashtag={hashtag}&type={type}&after={after}
Request Query Parameters
Query parameters for fetching hashtags feed
Field
Type
Required
Description
hashtag
string
Yes
Hashtag to fetch feed for
type
string
No
Type of feed to fetch (e.g. top, recent)
after
string
No
Cursor for pagination (e.g. next page)
Example Request
curl -X GET "https://api.gateway.walee.ai/api/ask/ig/hashtag/feed?hashtag={hashtag}&type={type}&after={after}" \
  -H "x-api-key: YOUR_API_KEY"
Success Response
Successful hashtags feed retrieval
200OK
{
"success": true,
"message": "Instagram hashtag feed fetched successfully",
"payload": {
"items": [
{
"pk": 0,
"display_url": "string",
"image_versions2": {
"candidates": [
{
"width": 0,
"height": 0,
"url": "string"
}
]
},
"has_audio": true,
"is_dash_eligible": "string",
"video_dash_manifest": "string",
"number_of_qualities": 0,
"video_url": "string",
"taken_at": 0,
"code": "string",
"comment_count": 0,
"like_count": 0,
"view_count": 0,
"play_count": 0,
"like_and_view_counts_disabled": true,
"media_type": 1,
"video_duration": 0,
"caption": {
"text": "string"
},
"title": "string",
"user": {
"pk": 0,
"username": "string",
"full_name": "string",
"profile_pic_url": "string",
"is_private": true,
"is_verified": true
},
"coauthor_producers": [
{
"pk": 0,
"is_verified": true,
"profile_pic_url": "string",
"username": "string"
}
],
"location": {
"pk": 0,
"name": "string",
"lng": 0,
"lat": 0,
"address": "string",
"city": "string"
},
"product_type": "feed",
"can_viewer_reshare": true,
"usertags": {
"in": [
{
"user": {
"pk": 0,
"username": "string",
"full_name": "string",
"profile_pic_url": "string",
"is_private": true,
"is_verified": true
},
"position": [
0
]
}
]
},
"sponsor_tags": [
{
"sponsor": {
"pk": 0,
"username": "string",
"full_name": "string",
"profile_pic_url": "string",
"is_private": true,
"is_verified": true
}
}
],
"carousel_media_count": 0,
"carousel_media": [
{
"pk": 0,
"display_url": "string",
"image_versions2": {
"candidates": [
{
"width": 0,
"height": 0,
"url": "string"
}
]
},
"has_audio": true,
"is_dash_eligible": "string",
"video_dash_manifest": "string",
"number_of_qualities": 0,
"video_url": "string"
}
],
"clips_metadata": {
"music_info": {
"music_asset_info": {
"audio_cluster_id": "string",
"id": "string",
"title": "string",
"subtitle": "string",
"display_artist": "string"
}
}
}
}
],
"more_available": true,
"end_cursor": "string",
"status": "ok"
}
}
Error Response
Error retrieving hashtags feed
400Bad Request
{
  "success": false,
  "message": "Failed to fetch hashtags feed"
  "payload": {}
}
Error Response
Unexpected error occurred
500Internal Server Error
{
  "success": false,
  "message": "Something went wrong. Please try again later."
  "payload": {}
}