Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.mindcase.co/llms.txt

Use this file to discover all available pages before exploring further.

$1.3 / 1k profiles Extract Instagram profile data, including bio, followers, website, verification, and recent posts with engagement, from usernames

Endpoint

POST /api/v1/agents/instagram/profiles/run

Parameters

usernames
array
required
List · Instagram usernames (e.g. nike, adidas) or full profile URLs (e.g. https://www.instagram.com/nike/). One per line.

Response columns

FieldDisplay nameType
profileUrlProfile URLurl
usernameUsernametext
fullNameFull Nametext
bioBiotext
profilePictureProfile Pictureurl
followersFollowersnumber
followingFollowingnumber
postsPostsnumber
verifiedVerifiedboolean
privatePrivateboolean
businessAccountBusiness Accountboolean
businessCategoryBusiness Categorytext
websiteWebsiteurl
linkedUrlLinked URLurl
linkedUrlTitleLinked URL Titletext
highlightReelsHighlight Reelsnumber
igtvVideosIGTV Videosnumber
joinedRecentlyJoined Recentlyboolean
latestIgtvVideosLatest Igtv Videosarray
latestPostsLatest Postsarray

Example

curl -X POST https://api.mindcase.co/api/v1/agents/instagram/profiles/run \
  -H "Authorization: Bearer mk_live_abc123def456" \
  -H "Content-Type: application/json" \
  -d '{
  "params": {
    "usernames": [
      "humansofny",
      "nasa",
      "natgeo",
      "humansofbombay",
      "9gag",
      "instagram",
      "champagnepapi",
      "kyliejenner",
      "leomessi",
      "cristiano"
    ]
  }
}'

Example response

Response
{
  "job_id": "job_7f3a2b1c",
  "status": "completed",
  "data": [
    {
      "profileUrl": "https://www.instagram.com/humansofbombay",
      "username": "humansofbombay",
      "fullName": "Humans Of Bombay",
      "bio": "Humans of Bombay: Real faces, raw stories, one Mumbai heartbeat at a time. \ud83d\udccd\nNot related to with any other handle i.e. officialhumansofbombay",
      "profilePicture": "https://scontent-phx1-1.cdninstagram.com/v/t51.82787-19/658841509_18428855506190983_279904313625780843_n.jpg?stp=dst-jpg_s320x320_tt6&efg=eyJ2ZW5jb2RlX3RhZyI6InByb2ZpbGVfcGljLmRqYW5nby44MzIuYzIifQ&_nc_ht=scontent-phx1-1.cdninstagram.com&_nc_cat=107&_nc_oc=Q6cZ2gG4BnAcDYOKDt2fOyab8fzr4awCXT7ZqjdL8dgAqqd1ZXAnmL2pEKP0QqX0beG-dE0&_nc_ohc=1NkJWiPwYpYQ7kNvwGaCSRq&_nc_gid=f-zX_3EWjzppbBe0HczIvA&edm=AOQ1c0wBAAAA&ccb=7-5&oh=00_Af5SeShspploWv1GszxkQmC6WJwqz0sy6jnjLTtx1IR4-Q&oe=69FA8B6A&_nc_sid=8b3546",
      "followers": 48,
      "following": 61,
      "posts": 1,
      "verified": false,
      "private": false,
      "businessAccount": false,
      "businessCategory": null,
      "website": null,
      "linkedUrl": null,
      "linkedUrlTitle": null,
      "highlightReels": 0,
      "igtvVideos": 0,
      "joinedRecently": false,
      "latestIgtvVideos": [],
      "latestPosts": [
        {
          "id": "3867470765301510451",
          "type": "Image",
          "shortCode": "DWsBCuZATEz",
          "caption": "",
          "hashtags": [],
          "mentions": [],
          "url": "https://www.instagram.com/p/DWsBCuZATEz/",
          "commentsCount": 0,
          "dimensionsHeight": 1080,
          "dimensionsWidth": 1080,
          "displayUrl": "https://scontent-phx1-1.cdninstagram.com/v/t51.82787-15/658518471_18428855602190983_829440817877330690_n.jpg?stp=dst-jpg_e15_tt6&_nc_ht=scontent-phx1-1.cdninstagram.com&_nc_cat=107&_nc_oc=Q6cZ2gG4BnAcDYOKDt2fOyab8fzr4awCXT7ZqjdL8dgAqqd1ZXAnmL2pEKP0QqX0beG-dE0&_nc_ohc=Hk2-pcag4xIQ7kNvwHfRzmJ&_nc_gid=f-zX_3EWjzppbBe0HczIvA&edm=AOQ1c0wBAAAA&ccb=7-5&ig_cache_key=Mzg2NzQ3MDc2NTMwMTUxMDQ1MQ%3D%3D.3-ccb7-5&oh=00_Af7LpOhvI7deAPUYBEzWlvB1dIRgyuEI1aY_IN-t-brh8A&oe=69FA8536&_nc_sid=8b3546",
          "images": [],
          "alt": null,
          "likesCount": 1,
          "timestamp": "2026-04-03T23:21:04.000Z",
          "childPosts": [],
          "ownerUsername": "humansofbombay",
          "ownerId": "5563222982",
          "isCommentsDisabled": false
        }
      ]
    }
  ]
}