get_mira_orthopedique_product
miraorthopediquedz.shopRetrieves full details for one Mira Orthopedique DZ product from https://miraorthopediquedz.shop using its catalog slug in a single fetch. Returns pricing, category, availability, images, sizes, colors, options, descriptions, and all other non-empty product attributes exposed by the store.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_mira_orthopedique_product?
Retrieves full details for one Mira Orthopedique DZ product from https://miraorthopediquedz.shop using its catalog slug in a single fetch. Returns pricing, category, availability, images, sizes, colors, options, descriptions, and all other non-empty product attributes exposed by the store. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass slug and get the result back without maintaining a scraper.
Response
{
"slug": "<string>",
"price": "<string>",
"title": "<string>",
"colors": [
"<string>"
],
"images": [
"<string>"
],
"source": "<string>",
"options": [
{}
],
"category": "<string>",
"currency": "<string>",
"available": true,
"attributes": {},
"available_sizes": [
"<string>"
]
}Call it
curl --location 'https://us-prod.notte.cc/functions/b8a018a4-830c-49e2-a18c-f62fe116c449/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "b8a018a4-830c-49e2-a18c-f62fe116c449",
"variables": {
"slug": "Sof066c"
}
}'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="b8a018a4-830c-49e2-a18c-f62fe116c449") — the "get_mira_orthopedique_product" function, which retrieves full details for one Mira Orthopedique DZ product from https://miraorthopediquedz.shop using its catalog slug in a single fetch. Returns pricing, category, availability, images, sizes, colors, options, descriptions, and all other non-empty product attributes exposed by the store.. It takes slug (str). Return the result as structured JSON.