get_public_profile_content
instagram.comReturns comprehensive public profile data from https://www.instagram.com, including metadata, follower counts, and up to 12 recent timeline posts and 12 recent reels from one upstream call. Works only for public profiles and includes total post and reel counts.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_public_profile_content?
Returns comprehensive public profile data from https://www.instagram.com, including metadata, follower counts, and up to 12 recent timeline posts and 12 recent reels from one upstream call. Works only for public profiles and includes total post and reel counts. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass username, posts_limit, reels_limit and get the result back without maintaining a scraper.
Response
{
"profile": {},
"source_url": "<string>",
"total_posts": 0,
"total_reels": 0,
"recent_posts": [
{}
],
"recent_reels": [
{}
]
}Call it
curl --location 'https://us-prod.notte.cc/functions/8c893e1a-e400-4a3f-8915-0ab75e579766/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "8c893e1a-e400-4a3f-8915-0ab75e579766",
"variables": {
"username": "instagram",
"posts_limit": 12,
"reels_limit": 12
}
}'Ask an agent
Paste this into Claude Code, Cursor or any MCP client to have an agent call this function for you.
Use the Anything API MCP server (https://anything.notte.cc/mcp). Call run(function_id="8c893e1a-e400-4a3f-8915-0ab75e579766") — the "get_public_profile_content" function, which returns comprehensive public profile data from https://www.instagram.com, including metadata, follower counts, and up to 12 recent timeline posts and 12 recent reels from one upstream call. Works only for public profiles and includes total post and reel counts.. It takes username (str), posts_limit (int), reels_limit (int). Return the result as structured JSON.