Marketplace
No threads yet
Live

get_product_details_by_id

pullandbear.com

Gets full Pull & Bear product details from https://www.pullandbear.com using a product ID from search results. Returns comprehensive product information including description, reference, all colors with per-size availability and pricing, material composition, care instructions, and all product images.

Parameters5
Runs11
Updated8d ago
Operational11 runs · 100% succeeded
30 days agotoday

Playground

Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.

What is get_product_details_by_id?

Gets full Pull & Bear product details from https://www.pullandbear.com using a product ID from search results. Returns comprehensive product information including description, reference, all colors with per-size availability and pricing, material composition, care instructions, and all product images. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass product_id, store_id, catalog_id, language_id, timeout_seconds and get the result back without maintaining a scraper.

Response

{
  "name": "<string>",
  "colors": [
    {}
  ],
  "images": [
    "<string>"
  ],
  "store_id": "<string>",
  "reference": "<string>",
  "catalog_id": "<string>",
  "product_id": "<string>",
  "description": "<string>",
  "language_id": "<string>",
  "source_record": {},
  "care_instructions": [
    {}
  ],
  "material_composition": [
    {}
  ]
}

Call it

curl --location 'https://us-prod.notte.cc/functions/6e7a8dc3-04c1-4a4e-a37c-00f45da145b6/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "6e7a8dc3-04c1-4a4e-a37c-00f45da145b6",
    "variables": {
        "product_id": "726841898",
        "store_id": "24009477",
        "catalog_id": "20309455",
        "language_id": "-15",
        "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.

prompt
Use the Anything API MCP server (https://anything.notte.cc/mcp).

Call run(function_id="6e7a8dc3-04c1-4a4e-a37c-00f45da145b6") — the "get_product_details_by_id" function, which gets full Pull & Bear product details from https://www.pullandbear.com using a product ID from search results. Returns comprehensive product information including description, reference, all colors with per-size availability and pricing, material composition, care instructions, and all product images..

It takes product_id (str), store_id (str), catalog_id (str), language_id (str), timeout_seconds (int). Return the result as structured JSON.