Get Instagram Creator Posts

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

Returns a paginated list of a Instagram creator's posts from the persisted database, each with its publish time, caption and engagement counters. Ideal for building performance timelines or picking representative content.

GET/api/v1/instagram/user/medias

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

Request Parameters

Required Parameters

NameInTypeDescription
usernamequerystringusername
example: nike

Optional Parameters

NameInTypeDescription
publish_at_startquerystringPublish time from
example: 2025-01-01
publish_at_endquerystringPublish time to
example: 2025-01-31
media_codequerystringPost code
example: DFdDk_eRYU3
media_typequerystringPost type (video, sidecar = carousel, image = single image)
example: video
is_paidquerystringSponsored post (1 = yes)
example: 1
sort_byquerystringSort field (publish_at, like_count, engagement_rate)
example: publish_at
sort_orderquerystringSort direction (asc, desc), default desc
example: desc
pagequeryintegerPage number
page_sizequeryintegerPage size

Response Fields

NameTypeDescription
successbooleanSuccess
codeintegerCode
messagestringMessage
dataobject-
data.itemsarray<object>Items
data.totalintegerTotal
data.pageintegerPage
data.page_sizeintegerPage Size
data.total_pagesintegerTotal Pages

Try It

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

Query Params

username*
publish_at_start
publish_at_end
media_code
media_type
is_paid
sort_by
sort_order
page
page_size

cURL Example

bash
curl -X GET "https://openapi.scdata.cc/api/v1/instagram/user/medias?username=nike" \
-H "Authorization: YOUR_API_KEY"

Response Example (200 application/json)

json
{
"success": true,
"code": 200,
"message": "Request successful",
"data": {
"items": [
{
"media_code": "DKruTaYRac_",
"media_url": "https://www.instagram.com/p/DKruTaYRac_/",
"description": "The future of tennis is in good hands.",
"cover_url": "https://img.scrumball.cn/instagram/Fpr2ndmGyZJECypIFBKcbklDFT3B?imageView2/2/w/300",
"publish_at": "2025-06-09 22:20:35",
"like_count": 144865,
"comment_count": 376,
"view_count": 0,
"media_type": "sidecar",
"engagement_rate": "0.05",
"media_username": "nike",
"media_user_url": "https://www.instagram.com/nike/",
"media_user_follower_count": 300572085,
"last_update_at": "2025-06-10 09:32:48"
}
],
"total": 765,
"page": 1,
"page_size": 1,
"total_pages": 765
}
}

Use Cases

  • Content performance review — Compare engagement across a creator's latest posts to see which formats and topics resonate with their audience.
  • Brand-safety screening — Scan recent captions and topics before a partnership to make sure the creator's content fits the brand.

Related Endpoints