Live · Instagram Data API

Instagram API

API کامل اینستاگرام — پروفایل، پست، استوری، فالوور، هشتگ و رسانه. دسترسی با API Key پس از تأیید ادمین.

Full Instagram public data API — profiles, media, stories, followers & more

User Profiles

اطلاعات پروفایل، بیو، فالوور، فالوینگ، پست‌ها و حساب‌های مشابه.

Media & Stories

پست، ریلز، استوری، کامنت، لایک و جزئیات رسانه با shortcode یا ID.

Hashtag & Location

جستجو و دریافت پست‌های هشتگ، لوکیشن و اطلاعات مرتبط.

Secure API Keys

احراز هویت با Bearer Token — صدور کلید از ربات تلگرام با تأیید ادمین.

POST https://iapi.digixnet.ir/api/instagram/user/get_web_profile_info
# Get Instagram profile info
curl -X POST https://iapi.digixnet.ir/api/instagram/user/get_web_profile_info \
  -H "Authorization: Bearer ig_your_api_key" \
  -H "Content-Type: application/json" \
  -d '{"username": "instagram"}'

# Response
{
  "status": "done",
  "response": {
    "status_code": 200,
    "body": {
      "data": {
        "user": {
          "username": "instagram",
          "full_name": "Instagram",
          "edge_followed_by": { "count": ... },
          "edge_follow": { "count": ... }
        }
      }
    }
  }
}