POST
/
v1
/
instagram
/
followers
curl -X POST https://api.zocialmine.com/v1/instagram/followers \
  -H "x-api-key: YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "url": "https://www.instagram.com/username",
    "cursor": "0"
  }'
{
  "status": "success",
  "data": {
    "followers": [
      {
        "id": "12345678901",
        "username": "follower_user",
        "fullName": "Follower Name",
        "profilePicUrl": "https://scontent.cdninstagram.com/...",
        "isVerified": false
      }
    ],
    "hasMore": true,
    "cursor": "QVFDdXJzb3IxMjM0NTY3ODkw",
    "total": 1500000
  }
}
Fetches the followers list for an Instagram user with cursor-based pagination. Cost: 2 credits per request.

Request

url
string
required
The Instagram profile URL.Example: https://www.instagram.com/username
cursor
string
default:"0"
Pagination cursor. Use "0" for the first page, then pass the returned cursor for subsequent pages.
webhook
string
A URL to receive the response via webhook. If provided, the request will be processed asynchronously and the result will be sent to this URL.

Response

status
string
"success" on successful request.
data
object
curl -X POST https://api.zocialmine.com/v1/instagram/followers \
  -H "x-api-key: YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "url": "https://www.instagram.com/username",
    "cursor": "0"
  }'
{
  "status": "success",
  "data": {
    "followers": [
      {
        "id": "12345678901",
        "username": "follower_user",
        "fullName": "Follower Name",
        "profilePicUrl": "https://scontent.cdninstagram.com/...",
        "isVerified": false
      }
    ],
    "hasMore": true,
    "cursor": "QVFDdXJzb3IxMjM0NTY3ODkw",
    "total": 1500000
  }
}