Marketplace
No threads yet
Live

get_product_inventory

uppababy.com

Looks up a single UPPAbaby product variant by SKU and returns its current stock quantities, purchase limits, and availability status from https://uppababy.com.

Parameters1
Runs9
Updated10d ago
Operational9 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_inventory?

Looks up a single UPPAbaby product variant by SKU and returns its current stock quantities, purchase limits, and availability status from https://uppababy.com. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass sku and get the result back without maintaining a scraper.

Response

{
  "inventory": {
    "sku": "<string>",
    "is_active": true,
    "product_id": "<string>",
    "is_closeout": true,
    "is_available": true,
    "product_type": "<string>",
    "purchase_step": 0,
    "stock_quantity": 0,
    "parent_product_id": "<string>",
    "availability_status": "<string>",
    "available_stock_quantity": 0,
    "minimum_purchase_quantity": 0,
    "maximum_purchasable_quantity": 0
  }
}

Call it

curl --location 'https://us-prod.notte.cc/functions/5fd68a93-d5ff-4f3e-b9f2-5b5c7bf59c1f/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "5fd68a93-d5ff-4f3e-b9f2-5b5c7bf59c1f",
    "variables": {
        "sku": "0303-VSO-NA-JMS"
    }
}'

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="5fd68a93-d5ff-4f3e-b9f2-5b5c7bf59c1f") — the "get_product_inventory" function, which looks up a single UPPAbaby product variant by SKU and returns its current stock quantities, purchase limits, and availability status from https://uppababy.com..

It takes sku (str). Return the result as structured JSON.