API Docs

v1.0.0Latest
GET

Get Creator Info

Retrieve creator information for instagram.

Endpoint
GET /ask/ig/creator/info?handle={handle}&filter=category
Request Query Parameters
Query parameters for fetching creator information
Field
Type
Required
Description
handle
string
Yes
Handle to fetch info for
filter
string
Yes
Pass the filter value `category` to get only category information (category | info)
Example Request
curl -X GET "https://api.gateway.walee.ai/api/ask/ig/creator/info?handle={handle}&filter=category" \
  -H "x-api-key: YOUR_API_KEY"
Success Response
Successful creator report retrieval
200OK
{
"success": true,
"message": "Instagram creator info fetched successfully",
"payload": {
"status": "ok",
"user": {
"pk": 0,
"username": "string",
"full_name": "string",
"profile_pic_url": "string",
"profile_pic_url_hd": "string",
"is_business": true,
"is_private": true,
"is_verified": true,
"media_count": 0,
"follower_count": 0,
"following_count": 0,
"biography": "string",
"external_url": "string",
"has_highlight_reels": false,
"category": "string",
"has_clips": "string",
"has_guides": true,
"has_channel": "string",
"total_igtv_videos": 0
}
}
}
Error Response
Error retrieving creator info
400Bad Request
{
  "success": false,
  "message": "Failed to fetch creator info"
  "payload": {}
}
Error Response
Unexpected error occurred
500Internal Server Error
{
  "success": false,
  "message": "Something went wrong. Please try again later."
  "payload": {}
}