API Docs

v1.0.0Latest
GET

Get Brands & Interests

Retrieve brands and interests for instagram.

Endpoint
GET /ask/interests
Example Request
curl -X GET "https://api.gateway.walee.ai/api/ask/interests" \
  -H "x-api-key: YOUR_API_KEY"
Success Response
Successful brands and interests retrieval
200OK
{
"success": true,
"message": "Instagram brands and interests fetched successfully",
"payload": {
"success": true,
"data": {
"interests": [
{
"id": 1,
"name": "Television & Film",
"count": 13454,
"deprecated": true
}
],
"brands": [
{
"id": 46,
"name": "Aéropostale",
"count": 111,
"deprecated": false,
"interest": [
{
"id": 7
}
]
}
]
}
}
}
Error Response
Error retrieving brands and interests
400Bad Request
{
  "success": false,
  "message": "Failed to fetch brands and interests"
  "payload": {}
}
Error Response
Unexpected error occurred
500Internal Server Error
{
  "success": false,
  "message": "Something went wrong. Please try again later."
  "payload": {}
}