get_maps_shared_list
google.comRetrieves a shared Google Maps list from https://www.google.com and returns its title, description, total count, and every listed place with address, coordinates, place ID, and user note.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_maps_shared_list?
Retrieves a shared Google Maps list from https://www.google.com and returns its title, description, total count, and every listed place with address, coordinates, place ID, and user note. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass list_url and get the result back without maintaining a scraper.
Response
{
"title": "<string>",
"places": [
{
"name": "<string>",
"note": "<string>",
"address": "<string>",
"google_id": "<string>",
"coordinates": {
"latitude": 0,
"longitude": 0
},
"hex_place_id": "<string>"
}
],
"list_id": "<string>",
"list_url": "<string>",
"owner_name": "<string>",
"description": "<string>",
"total_count": 0,
"returned_count": 0
}Call it
curl --location 'https://us-prod.notte.cc/functions/07e189ee-94be-4885-9445-24d9da1c0e87/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "07e189ee-94be-4885-9445-24d9da1c0e87",
"variables": {
"list_url": "https://maps.app.goo.gl/CWbxf6sXjKkxFoGm8?g_st=i"
}
}'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="07e189ee-94be-4885-9445-24d9da1c0e87") — the "get_maps_shared_list" function, which retrieves a shared Google Maps list from https://www.google.com and returns its title, description, total count, and every listed place with address, coordinates, place ID, and user note.. It takes list_url (str). Return the result as structured JSON.