GET/v1/instagram/user/profile
Get Instagram profile data
Retrieve full Instagram profile including bio, follower count, post count, and verification status.
Parameters
| Name | Type | Description |
|---|---|---|
| username_or_urlrequired | string | Instagram username or profile URL e.g. instagram |
| data | string | Data scope to return |
Request
Shell
curl -G "https://social-api.airaa.xyz/v1/instagram/user/profile" \ -H "X-API-KEY: YOUR_KEY" \ -d "username_or_url=instagram" \ -d "data=data"
Try it
Live requestRuns against the real API
X-API-KEY
username_or_urlrequired
data
Response example
200 OKapplication/json
{
"username": "instagram",
"full_name": "Instagram",
"biography": "Discover what's new on Instagram 🔎✨",
"is_verified": true,
"is_private": false,
"follower_count": 700883729,
"following_count": 236,
"media_count": 8400,
"profile_pic_url": "https://scontent.cdninstagram.com/v/t51.82787-19/pic.jpg",
"bio_links": [
{
"url": "http://help.instagram.com",
"title": "",
"link_type": "external"
}
],
"account_type": 3,
"is_business": false,
"pk": "25025320"
}Response codes
200Profile data
400Missing or invalid query parameter
401Missing or invalid `X-API-KEY` header
429Request quota exceeded — contact light@airaa.xyz to upgrade your plan
500Server misconfiguration — API key environment variable not set
502Airaa service temporarily unavailable — please try again
504Request timed out — please try again
All error responses follow the shape
{ "error": "message" }