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
Response columns
| Field | Display name | Type |
|---|
profileUrl | Profile URL | url |
username | Username | text |
fullName | Full Name | text |
bio | Bio | text |
profilePicture | Profile Picture | url |
followers | Followers | number |
following | Following | number |
posts | Posts | number |
verified | Verified | boolean |
private | Private | boolean |
businessAccount | Business Account | boolean |
businessCategory | Business Category | text |
website | Website | url |
linkedUrl | Linked URL | url |
linkedUrlTitle | Linked URL Title | text |
highlightReels | Highlight Reels | number |
igtvVideos | IGTV Videos | number |
joinedRecently | Joined Recently | boolean |
latestIgtvVideos | Latest Igtv Videos | array |
latestPosts | Latest Posts | array |
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
{
"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
}
]
}
]
}