get_store_details
homedepot.comReturns complete non-empty details for a Home Depot store by store ID from https://homedepot.com, including address, hours, services, contacts, phone numbers, coordinates, type, and URL.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_store_details?
Returns complete non-empty details for a Home Depot store by store ID from https://homedepot.com, including address, hours, services, contacts, phone numbers, coordinates, type, and URL. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass store_id and get the result back without maintaining a scraper.
Response
{
"store": {}
}Call it
curl --location 'https://us-prod.notte.cc/functions/cf0b17e1-60ee-4444-a8e6-a247d8af5945/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "cf0b17e1-60ee-4444-a8e6-a247d8af5945",
"variables": {
"store_id": "6175"
}
}'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="cf0b17e1-60ee-4444-a8e6-a247d8af5945") — the "get_store_details" function, which returns complete non-empty details for a Home Depot store by store ID from https://homedepot.com, including address, hours, services, contacts, phone numbers, coordinates, type, and URL.. It takes store_id (str). Return the result as structured JSON.