# PetSmart Live Stock Check

**Use case:** 

Check live PetSmart availability: ship-to-home quantity, nearest-store pickup stock and store name, plus price, brand, rating and fulfillment flags.

## Input

```json
{
  "keywords": [
    "cat food"
  ],
  "scrapeMode": "detail",
  "maxResults": 10
}
```

## Output

```json
{
  "thumbnail": {
    "label": "🖼️ Thumbnail",
    "format": "string"
  },
  "item_id": {
    "label": "🆔 Item ID",
    "format": "string"
  },
  "productTitle": {
    "label": "🏷️ Product Title",
    "format": "string"
  },
  "brand": {
    "label": "™️ Brand",
    "format": "string"
  },
  "manufacturer": {
    "label": "🏭 Manufacturer",
    "format": "string"
  },
  "manufacturer_sku": {
    "label": "🔧 Manufacturer SKU",
    "format": "string"
  },
  "upc": {
    "label": "🔢 UPC",
    "format": "string"
  },
  "master_product_id": {
    "label": "🔗 Master Product ID",
    "format": "string"
  },
  "series": {
    "label": "📚 Series",
    "format": "array"
  },
  "url": {
    "label": "🔗 Product URL",
    "format": "string"
  },
  "price": {
    "label": "💵 Price",
    "format": "number"
  },
  "list_price": {
    "label": "🏷️ List Price",
    "format": "number"
  },
  "sale_price": {
    "label": "🔥 Sale Price",
    "format": "number"
  },
  "price_display": {
    "label": "💲 Price Display",
    "format": "string"
  },
  "price_range_low": {
    "label": "⬇️ Price Range Low",
    "format": "number"
  },
  "price_range_high": {
    "label": "⬆️ Price Range High",
    "format": "number"
  },
  "currency": {
    "label": "💱 Currency",
    "format": "string"
  },
  "on_sale": {
    "label": "🔥 On Sale",
    "format": "boolean"
  },
  "rating": {
    "label": "⭐ Rating",
    "format": "number"
  },
  "review_count": {
    "label": "💬 Review Count",
    "format": "integer"
  },
  "pet_type": {
    "label": "🐾 Pet Type",
    "format": "array"
  },
  "category": {
    "label": "🗂️ Category",
    "format": "string"
  },
  "category_id": {
    "label": "🆔 Category ID",
    "format": "string"
  },
  "breadcrumbs": {
    "label": "🧭 Breadcrumbs",
    "format": "array"
  },
  "flavor": {
    "label": "🍖 Flavor",
    "format": "string"
  },
  "size": {
    "label": "📏 Size",
    "format": "string"
  },
  "food_form": {
    "label": "🥫 Food Form",
    "format": "string"
  },
  "life_stage": {
    "label": "🐶 Life Stage",
    "format": "array"
  },
  "health_considerations": {
    "label": "🩺 Health Considerations",
    "format": "array"
  },
  "variations": {
    "label": "🔀 Variations",
    "format": "array"
  },
  "in_stock_online": {
    "label": "✅ In Stock Online",
    "format": "boolean"
  },
  "in_stock_store": {
    "label": "🏬 In Stock In Store",
    "format": "boolean"
  },
  "bopis_eligible": {
    "label": "🛍️ Store Pickup Eligible",
    "format": "boolean"
  },
  "autoship_eligible": {
    "label": "🔄 Autoship Eligible",
    "format": "boolean"
  },
  "same_day_delivery_eligible": {
    "label": "🚚 Same-Day Delivery Eligible",
    "format": "boolean"
  },
  "online_only": {
    "label": "🌐 Online Only",
    "format": "boolean"
  },
  "store_only": {
    "label": "🏪 Store Only",
    "format": "boolean"
  },
  "description": {
    "label": "📝 Description",
    "format": "string"
  },
  "ship_to_home_stock": {
    "label": "📦 Ship-to-Home Stock",
    "format": "integer"
  },
  "store_pickup_stock": {
    "label": "🏬 Store Pickup Stock",
    "format": "integer"
  },
  "pickup_store_id": {
    "label": "🆔 Pickup Store ID",
    "format": "string"
  },
  "pickup_store_name": {
    "label": "🏬 Pickup Store Name",
    "format": "string"
  },
  "images": {
    "label": "📸 Images",
    "format": "array"
  },
  "source": {
    "label": "🧩 Source",
    "format": "string"
  },
  "metadata": {
    "label": "🧾 Metadata",
    "format": "object"
  }
}
```

## About this Actor

This example demonstrates how to use [PetSmart Product Scraper](https://apify.com/sian.agency/petsmart-product-scraper.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/sian.agency/petsmart-product-scraper.md) to learn more, explore other use cases, and run it yourself.


## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
This Task's input is already configured above — use it as-is rather than inventing a new one.

- **AI agents and MCP clients** — the [Apify MCP server](https://docs.apify.com/integrations/mcp.md) at `https://mcp.apify.com` (remote, streamable HTTP, OAuth on first use).
- **Agentic workflows and local Actor development** — [Agent Skills](https://apify.com/.well-known/agent-skills/index.json) with the [Apify CLI](https://docs.apify.com/cli/docs.md): `npm install -g apify-cli`, then `apify login`.
- **JavaScript/TypeScript projects** — the official [JS/TS client](https://docs.apify.com/api/client/js/docs.md): `npm install apify-client`.
- **Python projects** — the official [Python client](https://docs.apify.com/api/client/python/docs.md): `pip install apify-client`.
- **Any other language** — the [REST API](https://docs.apify.com/api/v2.md).

For full API examples (JavaScript, Python, CLI, MCP, OpenAPI), see this Task's Actor page: https://apify.com/sian.agency/petsmart-product-scraper.md

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).
