Get Instagram Creator Profile (Realtime)

10 endpoints • Base: https://openapi.scdata.cc

Collects a Instagram creator's profile directly from the platform at request time instead of reading the persisted database. Use it when freshness matters more than throughput; realtime calls consume more quota than database reads.

GET/api/v1/instagram/realtime/user/info

Quota usage: Each successful request to this endpoint deducts 100 quota units from your plan.

Platform Path Family

/api/v1/{platform}/realtime/user/info

Available Platforms

Request Parameters

Required Parameters

This endpoint has no required parameters.

Optional Parameters

NameInTypeDescription
usernamequerystringusername
example: nike
user_idquerystringuser_id
example: 13460080

Response Fields

NameTypeDescription
successbooleanSuccess
codeintegerCode
messagestringMessage
dataobject-
data.user_idstringuser_id
data.usernamestringusername
data.full_namestringfull_name
data.profile_urlstringProfile URL
data.descriptionstringBio
data.follower_countintegerFollower count
data.following_countintegerFollowing count
data.media_countintegerPost count
data.is_privatebooleanPrivate account

Try It

https://openapi.scdata.cc/api/v1/instagram/realtime/user/info
Select an API key from Dashboard
Add an API key before sending a request.Go to Dashboard

Query Params

username
user_id

cURL Example

bash
curl -X GET "https://openapi.scdata.cc/api/v1/instagram/realtime/user/info" \
-H "Authorization: YOUR_API_KEY"

Response Example (200 application/json)

json
{
"success": true,
"code": 200,
"message": "Request successful",
"data": {
"user_id": "string",
"username": "string",
"full_name": "string",
"profile_url": "string",
"avatar": "string",
"verified": true,
"description": "string",
"follower_count": 0,
"following_count": 0,
"media_count": 0,
"is_private": true
}
}

Use Cases

  • Pre-campaign refresh — Refresh a shortlisted creator's numbers right before signing a deal so the contract reflects today's audience size.
  • Filling database gaps — When the database lookup returns nothing for a creator, trigger a live collection to obtain the profile.

Related Endpoints