获取用户Reels列表/Get user reels
[中文]#
用途:#
参数:#
username: Instagram用户名(必填)
first: 向后翻页时每页数量(默认12,最大50)
after: 向后翻页游标,从上一次响应的 data.page_info.end_cursor 获取
before: 向前翻页游标,从上一次响应的 data.page_info.start_cursor 获取
last: 向前翻页时每页数量,配合 before 使用
返回:#
end_cursor: 下一页游标(传给下次请求的after参数)
分页使用方法:#
1.
首次请求:只传 username 和 first 参数
2.
获取响应中的 data.page_info.end_cursor
3.
下次请求:传入 username、first 和 after (使用上次的end_cursor)
4.
重复步骤 2-3 直到 data.page_info.has_next_page 为 false
[English]#
Purpose:#
Get Instagram user's Reels list
Support pagination to fetch all user's Reels
Parameters:#
username: Instagram username (required)
first: Reels per page for forward pagination (default 12, max 50)
after: Forward pagination cursor, from previous response data.page_info.end_cursor
before: Backward pagination cursor, from previous response data.page_info.start_cursor
last: Reels per page for backward pagination, use with before
page_size: Videos per page (default 12)
Return:#
node.media: Reels media infocomment_count: Comments count
caption.text: Description text
video_versions: Video version list
image_versions2: Cover image version list
data.page_info: Pagination infohas_next_page: Whether has next page
end_cursor: Next page cursor (use as after parameter in next request)
1.
First request: Only pass username and first parameters
2.
Get data.page_info.end_cursor from response
3.
Next request: Pass username, first, and after (use end_cursor from previous)
4.
Repeat steps 2-3 until data.page_info.has_next_page is false
示例/Example#
username = "instagram"
first = 12TikOmni Pricing#
Actual billing follows the TikOmni pricing catalog. Query /api/pricing/v1/endpoints with this endpoint path for the current unit price.
Request
Provide your bearer token in the Authorization
header when making requests to protected resources. Example:Authorization: Bearer ********************
or
Request Code Samples
curl --location 'https://api.tikomni.com/api/u1/v1/instagram/v3/get_user_reels?username=instagram&first=undefined&after=undefined&before=undefined&last=undefined&page_size=undefined' \
--header 'Authorization: Bearer <token>'
Modified at 2026-08-13 21:36:23