# Petco Scraper (`lexis-solutions/petco-scraper`) Actor

Extract structured product data from Petco.com — categories, search results & brand pages. Get pricing, ratings, images & more in clean JSON. Ideal for price tracking, catalog analysis & ML datasets.

- **URL**: https://apify.com/lexis-solutions/petco-scraper.md
- **Developed by:** [Lexis Solutions](https://apify.com/lexis-solutions) (community)
- **Categories:** E-commerce, AI, Agents
- **Stats:** 4 total users, 1 monthly users, 100.0% runs succeeded, 1 bookmarks
- **User rating**: No ratings yet

## Pricing

from $1.90 / 1,000 products

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.
Since this Actor supports Apify Store discounts, the price gets lower the higher subscription plan you have.

Learn more: https://docs.apify.com/actors/running/actors-in-store.md#pay-per-event

## What's an Apify Actor?

Actors are web data automations that power AI and operations. They run on the Apify platform to scrape websites, process data, connect APIs, and automate workflows.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.
Actors are written with capital "A".

## 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.
The best way to integrate Actors is as follows.

- **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 usage examples, see the [API](#api) section below.

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).

# README

## 🐶 Petco.com Scraper

![Petco Scraper](https://i.postimg.cc/25yqPwGk/banner.png)

### ❓ What is this scraper?

This scraper extracts structured product data from Petco.com across multiple types of listing pages.

It collects clean and consistent product information from:

- Category pages
- Search results
- Brand listings

The data is standardized into a normalized format, making it easy to use for analysis, integrations, or storage.

***

### ⚡ Why this scraper?

Petco is a major e-commerce platform for pet products. This scraper allows you to:

- Extract product catalogs at scale
- Track pricing and discounts
- Analyze brands and categories
- Build datasets for ML, analytics, or marketplaces
- Monitor inventory trends and product availability

***

### 📥 Input

```json
{
  "maxItems": 5,
  "startUrls": [
    {
      "url": "https://www.petco.com/category/top-deals/bird-deals"
    }
  ],
  "proxyConfiguration": {
    "useApifyProxy": false,
  }
}
```

#### 🔗 Supported URL types

- **Search**

  ```
  https://www.petco.com/search?query=dog+food
  ```

- **Category**

  ```
  https://www.petco.com/category/dog/dog-food
  ```

- **Brand**

  ```
  https://www.petco.com/brand/higgins
  ```

***

### 📤 Output

Each product is returned as a structured JSON object:

```json
{
  "url": "https://www.petco.com/shop/en/petcostore/product/purina-pro-plan-sensitive-skin-and-stomach-salmon-and-rice-formula-dry-dog-food-40-lbs-3748364",
  "id": "5043283",
  "variation_id": "3748364",
  "category_entry_id": "6131012",
  "parent_category_entry_id": 2026049,
  "name": "Purina Pro Plan Sensitive Skin and Stomach Salmon and Rice Formula Dog Food",
  "brand": "Purina Pro Plan",
  "image": "https://assets.petco.com/petco/image/upload/f_auto,q_auto,w_190/dpr_auto/3748364-center-1",
  "description": "High protein dry dog food formula...",
  "price": {
    "rd_price": 90.23,
    "list_price": 97.99,
    "offer_price": 94.98
  },
  "rating": {
    "average_rating": 4.5052,
    "total_review_count": 6093
  },
  "facets": [
    {
      "name": "Primary Brand",
      "values": ["Purina Pro Plan"]
    }
  ],
  "group_ids": [
    "dry-dog-food",
    "repeat-delivery-eligible-products"
  ],
  "product_taxonomy": "Consumables|Food|Household Pet",
  "is_buy_online_pickup_in_store": true,
  "is_repeat_delivery_eligible": true,
  "is_in_store_only": false
}
```

***

### Need to scrape other sites?

Check out our other scrapers on Apify:

- [Musti.no Scraper](https://apify.com/lexis-solutions/musti-no-scraper)
- [Fressnapf.ch Scraper](https://apify.com/lexis-solutions/fressnapf-ch-scraper)
- [Zooroyal.de Scraper](https://apify.com/lexis-solutions/zooroyal-scraper)

***

👀 p.s.

Got feedback or need an extension?

Lexis Solutions is a [certified Apify Partner](https://apify.com/partners/find). We can help you with custom solutions or data extraction projects.

Contact us over [Email](mailto:scraping@lexis.solutions) or [LinkedIn](https://www.linkedin.com/company/lexis-solutions)

### Support Our Work 💝

If you're happy with our work and scrapers, you're welcome to leave us a company review [here](https://apify.com/partners/find/lexis-solutions/review) and leave a review for the scrapers you're subscribed to. It will take you less than a minute but it will mean a lot to us!

### Image Credit

Image Credit: https://www.petco.com/shop/en/petcostore

# Actor input Schema

## `startUrls` (type: `array`):

URLs to scrape

## `maxItems` (type: `integer`):

The maximum number of items to fetch

## `proxyConfiguration` (type: `object`):

Your proxy configuration from Apify

## Actor input object example

```json
{
  "startUrls": [
    {
      "url": "https://www.petco.com/category/top-deals/bird-deals"
    }
  ],
  "maxItems": 5,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

# Actor output Schema

## `overview` (type: `string`):

No description

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

```javascript
import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {
    "startUrls": [
        {
            "url": "https://www.petco.com/category/top-deals/bird-deals"
        }
    ]
};

// Run the Actor and wait for it to finish
const run = await client.actor("lexis-solutions/petco-scraper").call(input);

// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
    console.dir(item);
});

// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

```

## Python example

```python
from apify_client import ApifyClient

# Initialize the ApifyClient with your Apify API token
# Replace '<YOUR_API_TOKEN>' with your token.
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = { "startUrls": [{ "url": "https://www.petco.com/category/top-deals/bird-deals" }] }

# Run the Actor and wait for it to finish
run = client.actor("lexis-solutions/petco-scraper").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print(f"💾 Check your data here: https://console.apify.com/storage/datasets/{run.default_dataset_id}")
for item in client.dataset(run.default_dataset_id).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{
  "startUrls": [
    {
      "url": "https://www.petco.com/category/top-deals/bird-deals"
    }
  ]
}' |
apify call lexis-solutions/petco-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,lexis-solutions/petco-scraper"
        }
    }
}

```

The hosted server signs you in with OAuth on first connect, so no API token belongs in this config. Clients without OAuth support can send an `Authorization: Bearer <APIFY_API_TOKEN>` header instead, using a token from API & Integrations in Apify Console (https://console.apify.com/settings/integrations).

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/actors/1cSpIxkqhURLl8Kbp/builds/Rlc8J93oyuVM6LfFW/openapi.json
