Marketplace
No threads yet
Live

get_public_profile

instagram.com

Gets detailed public creator profile information from https://www.instagram.com, including biography, follower and following counts, media count, profile photos, verification, categories, and bio links. It accepts a username, @handle, or Instagram profile URL and does not require login.

Parameters1
Runs10
Updated10d ago
Operational10 runs · 100% succeeded
30 days agotoday

Playground

Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.

What is get_public_profile?

Gets detailed public creator profile information from https://www.instagram.com, including biography, follower and following counts, media count, profile photos, verification, categories, and bio links. It accepts a username, @handle, or Instagram profile URL and does not require login. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass username and get the result back without maintaining a scraper.

Response

{
  "profile": {},
  "source_url": "<string>"
}

Call it

curl --location 'https://us-prod.notte.cc/functions/b1373960-a247-4153-9eec-c22297c151c7/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "b1373960-a247-4153-9eec-c22297c151c7",
    "variables": {
        "username": "instagram"
    }
}'

Ask an agent

Paste this into Claude Code, Cursor or any MCP client to have an agent call this function for you.

prompt
Use the Anything API MCP server (https://anything.notte.cc/mcp).

Call run(function_id="b1373960-a247-4153-9eec-c22297c151c7") — the "get_public_profile" function, which gets detailed public creator profile information from https://www.instagram.com, including biography, follower and following counts, media count, profile photos, verification, categories, and bio links. It accepts a username, @handle, or Instagram profile URL and does not require login..

It takes username (str). Return the result as structured JSON.