获取用户粉丝列表/Get user followers list

Instagramapi

About

获取用户粉丝列表/Get user followers list

Documentation

获取用户粉丝列表/Get user followers list

[中文]

用途:

  • 获取Instagram用户的粉丝列表
  • 返回关注该用户的所有账号信息
  • 支持分页获取

参数:

  • username: Instagram用户名(必填)
  • count: 每次获取数量(默认12,最大100)
  • max_id: 分页游标,首次请求不传,从上一次响应的 data.next_max_id 获取

返回:

  • data.users: 粉丝用户列表
    • pk: 用户ID
    • username: 用户名
    • full_name: 全名
    • is_private: 是否私密账号
    • is_verified: 是否认证
    • profile_pic_url: 头像URL
  • data.next_max_id: 下一页分页游标(传给下次请求的max_id参数)
  • data.big_list: 是否有更多数据
  • data.page_size: 每页数量
  • data.status: 状态

分页使用方法:

  1. 首次请求:只传 usernamecount 参数
  2. 获取响应中的 data.next_max_id
  3. 下次请求:传入 usernamecountmax_id (使用上次的next_max_id)
  4. 重复步骤 2-3 直到响应中没有 next_max_id 字段

价格:

  • 0.008 USD/请求

[English]

Purpose:

  • Get Instagram user's followers list
  • Returns all accounts that follow this user
  • Support pagination

Parameters:

  • username: Instagram username (required)
  • count: Number of users to fetch per request (default 12, max 100)
  • max_id: Pagination cursor, omit for first request, get from previous response data.next_max_id

Return:

  • data.users: Followers user list
    • pk: User ID
    • username: Username
    • full_name: Full name
    • is_private: Whether private account
    • is_verified: Whether verified
    • profile_pic_url: Profile picture URL
  • data.next_max_id: Next page cursor (use as max_id in next request)
  • data.big_list: Whether has more data
  • data.page_size: Page size
  • data.status: Status

Pagination usage:

  1. First request: Only pass username and count parameters
  2. Get data.next_max_id from response
  3. Next request: Pass username, count, and max_id (use next_max_id from previous)
  4. Repeat steps 2-3 until response has no next_max_id field

Price:

  • 0.008 USD/request

示例/Example

username = "instagram" count = 12

Imported from a validated TikHub OpenAPI document. Pricing must be reviewed before enabling.

Try 获取用户粉丝列表/Get user followers list

Test this model in the Sandbase Playground with your own prompts.

Open in Playground

Related Models