Search Instagram users by keyword. Returns username, full name, user ID, verification status, privacy status, and profile picture URL.
curl "https://apidirect.io/v1/instagram/users?query=photography" \
-H "X-API-Key: YOUR_API_KEY"
{
"users": [
{
"username": "natgeo",
"full_name": "National Geographic",
"user_id": "787132",
"is_verified": true,
"is_private": false,
"profile_pic_url": "https://scontent.cdninstagram.com/.../photo.jpg",
"url": "https://instagram.com/natgeo"
}
],
"count": 50
}