Live
get_agent_profile
propertyfinder.aeReturns a full agent profile from https://propertyfinder.ae with transactions, areas of expertise, ratings, contact details, license data, and broker affiliation.
Parameters3
Runs6
Updated3d ago
Operational6 runs · 100% succeeded
30 days ago90 days agoranfailednot checkedtoday
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_agent_profile?
Returns a full agent profile from https://propertyfinder.ae with transactions, areas of expertise, ratings, contact details, license data, and broker affiliation. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass agent_slug, locale, timeout_seconds and get the result back without maintaining a scraper.
Response
{
"agent": {},
"profile_url": "<string>",
"profile_slug": "<string>",
"areas_of_expertise": [
{}
],
"expertise_locations": [
{}
],
"location_grouped_transactions": {}
}Call it
curl --location 'https://us-prod.notte.cc/functions/c3807313-2435-4bee-a333-4ca1a266bfed/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "c3807313-2435-4bee-a333-4ca1a266bfed",
"variables": {
"agent_slug": "steve-crasto-405407",
"locale": "en",
"timeout_seconds": 30
}
}'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="c3807313-2435-4bee-a333-4ca1a266bfed") — the "get_agent_profile" function, which returns a full agent profile from https://propertyfinder.ae with transactions, areas of expertise, ratings, contact details, license data, and broker affiliation.. It takes agent_slug (str), locale (str), timeout_seconds (int). Return the result as structured JSON.