API Docs

v1.0.0Latest
GET

Get Creator Feed

Retrieve creator feed for instagram.

Endpoint
GET /ask/ig/creator/feed?handle={handle}
Request Query Parameters
Query parameters for fetching creator feed
Field
Type
Required
Description
handle
string
Yes
Handle to fetch feed for
Example Request
curl -X GET "https://api.gateway.walee.ai/api/ask/ig/creator/feed?handle={handle}" \
  -H "x-api-key: YOUR_API_KEY"
Success Response
Successful creator feed retrieval
200OK
{
"success": true,
"message": "Instagram creator feed fetched successfully",
"payload": {
"items": [
{
"pk": 0,
"display_url": "string",
"image_versions2": {
"candidates": [
{
"width": 0,
"height": 0,
"url": "string",
"scans_profile": "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,
"play_count": null,
"like_and_view_counts_disabled": false,
"media_type": 0,
"video_duration": 0,
"caption": {
"text": "string"
},
"title": null,
"user": {
"pk": 0,
"pk_id": "string",
"username": "string",
"full_name": "string",
"profile_pic_url": "string",
"is_private": false,
"is_verified": true
},
"coauthor_producers": [
{
"pk": 0,
"is_verified": true,
"profile_pic_url": "string",
"username": "string"
}
],
"product_type": "string",
"timeline_pinned_user_ids": [
0,
0
],
"can_viewer_reshare": true,
"reshare_count": 0,
"is_paid_partnership": false,
"sponsor_tags": null,
"clips_metadata": {
"music_info": null
},
"music_metadata": null
}
],
"more_available": true,
"end_cursor": "string",
"status": "string"
}
}
Error Response
Error retrieving creator feed
400Bad Request
{
  "success": false,
  "message": "Failed to fetch creator feed"
  "payload": {}
}
Error Response
Unexpected error occurred
500Internal Server Error
{
  "success": false,
  "message": "Something went wrong. Please try again later."
  "payload": {}
}