search_nearby_stores
pullandbear.comFinds nearby Pull & Bear physical stores from https://www.pullandbear.com using geographic coordinates and a search radius. Returns store records with address, city, country, phone numbers, store type, opening hours, and operational status.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is search_nearby_stores?
Finds nearby Pull & Bear physical stores from https://www.pullandbear.com using geographic coordinates and a search radius. Returns store records with address, city, country, phone numbers, store type, opening hours, and operational status. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass latitude, longitude, country_code, radius_km, max_results, timeout_seconds and get the result back without maintaining a scraper.
Response
{
"stores": [
{}
],
"latitude": 0,
"longitude": 0,
"radius_km": 0,
"max_results": 0,
"country_code": "<string>",
"nearby_store_count": 0,
"total_country_stores": 0
}Call it
curl --location 'https://us-prod.notte.cc/functions/913ba7d1-eb0a-40ed-9b4b-aa08a3878c69/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "913ba7d1-eb0a-40ed-9b4b-aa08a3878c69",
"variables": {
"latitude": 40.4168,
"longitude": -3.7038,
"country_code": "ES",
"radius_km": 100.0,
"max_results": 50,
"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.
Use the Anything API MCP server (https://anything.notte.cc/mcp). Call run(function_id="913ba7d1-eb0a-40ed-9b4b-aa08a3878c69") — the "search_nearby_stores" function, which finds nearby Pull & Bear physical stores from https://www.pullandbear.com using geographic coordinates and a search radius. Returns store records with address, city, country, phone numbers, store type, opening hours, and operational status.. It takes latitude (float), longitude (float), country_code (str), radius_km (float), max_results (int), timeout_seconds (int). Return the result as structured JSON.