Live
get_store_by_postal_code
carrefour.esResolves a Spanish postal code through https://www.carrefour.es to the assigned Carrefour store, delivery type, sale point, region, and warehouse identifiers.
Parameters1
Runs5
Updated1d ago
Degraded5 runs · 80% 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_store_by_postal_code?
Resolves a Spanish postal code through https://www.carrefour.es to the assigned Carrefour store, delivery type, sale point, region, and warehouse identifiers. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass postal_code and get the result back without maintaining a scraper.
Response
{
"name": "<string>",
"chronos": true,
"werks_id": "<string>",
"marketpay": true,
"region_id": "<string>",
"sale_point": "<string>",
"postal_code": "<string>",
"delivery_type": "<string>",
"projection_days": "<string>",
"nektriaWarehouseId": "<string>",
"allow_substitutions": true,
"is_sell_pack_enabled": true
}Call it
curl --location 'https://us-prod.notte.cc/functions/282067e6-9672-427e-9f48-9585d78daf3c/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "282067e6-9672-427e-9f48-9585d78daf3c",
"variables": {
"postal_code": "28001"
}
}'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="282067e6-9672-427e-9f48-9585d78daf3c") — the "get_store_by_postal_code" function, which resolves a Spanish postal code through https://www.carrefour.es to the assigned Carrefour store, delivery type, sale point, region, and warehouse identifiers.. It takes postal_code (str). Return the result as structured JSON.