# NextDayPets Scraper (Pawrade) (`crawlerbros/nextdaypets-scraper`) Actor

Scrape puppy listings from Pawrade, the successor of nextdaypets.com. Browse by breed, US state or city, or curated collections; get name, breed, gender, age, price, photos, description, and health details per puppy.

- **URL**: https://apify.com/crawlerbros/nextdaypets-scraper.md
- **Developed by:** [Crawler Bros](https://apify.com/crawlerbros) (community)
- **Categories:** Automation, E-commerce, Lead generation
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $3.00 / 1,000 results

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

Learn more: https://docs.apify.com/platform/actors/running/actors-in-store#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

## NextDayPets Scraper (Pawrade)

Scrape **puppy listings from Pawrade** — the platform that succeeded nextdaypets.com (the domain now redirects there). Browse puppies by breed, by US state or metro area, or from curated collections, and get name, breed, gender, age, price, photos, and health details per puppy. Pure HTTP via public browse pages. No auth, no proxy.

### What this actor does

- **Four modes:** `byBreed` (default), `byLocation`, `byCollection`, `byUrl`
- **50 breed dropdowns** — every breed currently listed on the platform (incl. `yorkiepoo-yorkie-poo` / Yorkie-Poo)
- **74 location dropdowns** — every US state + major metro area the platform supports
- **5 curated collections** — apartment dogs, family dogs, hypoallergenic, small, emotional support
- **Filters:** gender, price range
- **Rich puppy data:** age in weeks, gender, price, photo thumbnails, birth/available dates, microchip status, color, weight, registration
- **Empty fields are omitted** — records only carry values the platform actually provides

### Data Source

nextdaypets.com was rebranded and now redirects to **pawrade.com**. This actor scrapes Pawrade's public, indexable puppy browse pages (`/puppies/<breed>/`, `/puppies-for-sale/<state>/`, `/collection/<slug>/`) and puppy detail pages. No login, cookies, or API keys required.

### Output per puppy

Browse records (`mode = byBreed / byLocation / byCollection`) include:

- `id` — Pawrade's internal puppy id (10-char hex)
- `name` — puppy's given name
- `breed` — canonical breed slug (e.g. `golden-retriever`)
- `gender` — `male` or `female`
- `ageWeeks` — age in weeks
- `price` — asking price in USD (from the listing card)
- `thumbnailUrl` — photo thumbnail (CloudFront CDN)
- `puppyUrl`, `sourceUrl` — canonical listing URL
- `recordType: "puppy"`, `scrapedAt`

Detail records (`mode = byUrl`) additionally include:

- `description` — breeder's description text
- `color`, `weight` — physical attributes
- `dateOfBirth`, `dateAvailable` — dates
- `microchipped` — boolean
- `registration` — registration body (e.g. `ICCF`)
- `puppyId` — short display id (e.g. `57BF5F`)
- `priceTotal` — all-in price including placement & PetPay fees
- `images[]`, `imageUrl` — full-size photo gallery

### Input

| Field | Type | Default | Description |
|---|---|---|---|
| `mode` | string | `byBreed` | `byBreed` / `byLocation` / `byCollection` / `byUrl` |
| `breed` | string | `golden-retriever` | Breed slug (mode=byBreed); empty = all breeds |
| `location` | string | – | US state / metro slug (mode=byLocation) |
| `collection` | string | – | Collection slug (mode=byCollection) |
| `urls` | array | – | Puppy URLs to fetch (mode=byUrl) |
| `gender` | string | – | `male` / `female` filter |
| `priceMin` | int | – | Minimum price in USD |
| `priceMax` | int | – | Maximum price in USD |
| `maxItems` | int | `50` | Hard cap (1–1000) |

#### Example: browse a breed with filters

```json
{
  "mode": "byBreed",
  "breed": "golden-retriever",
  "gender": "female",
  "priceMax": 3000,
  "maxItems": 25
}
```

#### Example: puppies near a state

```json
{
  "mode": "byLocation",
  "location": "texas",
  "maxItems": 20
}
```

#### Example: fetch specific puppies by URL

```json
{
  "mode": "byUrl",
  "urls": [
    "https://www.pawrade.com/puppies/cane-corso-mastiff/57bf5fee71/"
  ]
}
```

#### Example: curated collection

```json
{
  "mode": "byCollection",
  "collection": "best-hypoallergenic-dogs",
  "maxItems": 30
}
```

### Use cases

- **Family pet research** — compare available puppies of a breed with prices and ages
- **Breeder marketplace analysis** — track supply, pricing, and availability across breeds and states
- **Pet marketplaces** — monitor competitor inventory and price positioning
- **Content pipelines** — build puppy-listing feeds with photos and descriptions
- **Pet adoption tech** — power search UIs with live availability data

### FAQ

**What happened to nextdaypets.com?**
The brand was absorbed into Pawrade and the domain now redirects to `pawrade.com`. This actor scrapes the live successor platform, which is where nextdaypets listings now live.

**Is there a text search mode?**
No. Pawrade does not support a free-text puppy search on its public pages (`?s=` queries are ignored and return the full listing). Browse by breed, location, or collection instead, or fetch exact URLs with `byUrl`.

**What currency are prices in?**
USD. `price` is the advertised puppy price; `priceTotal` (detail pages) includes Pawrade's placement & PetPay fees.

**Why do some fields only appear on detail records?**
Fields like `description`, `color`, and `microchipped` only exist on a puppy's own detail page. Browse pages list cards with the essentials; use `mode=byUrl` (or open any `puppyUrl`) to get the full profile. The actor intentionally does not fetch every detail page when browsing, to keep runs fast and cheap.

**Are the photos accessible?**
Yes — all images are served from public CloudFront CDN URLs and load without authentication.

**Is this actor affiliated with Pawrade?**
No. This is a third-party actor using Pawrade's publicly visible pages.

# Actor input Schema

## `mode` (type: `string`):

How to find puppies.

## `breed` (type: `string`):

Breed to browse (mode=byBreed). Leave empty for all breeds.

## `location` (type: `string`):

US state or metro area (mode=byLocation).

## `collection` (type: `string`):

Curated puppy collection (mode=byCollection).

## `urls` (type: `array`):

Full pawrade.com puppy URLs, e.g. `https://www.pawrade.com/puppies/golden-retriever/3df4cd8f61/`.

## `gender` (type: `string`):

Only keep puppies of this gender.

## `priceMin` (type: `integer`):

Only keep puppies priced at or above this amount.

## `priceMax` (type: `integer`):

Only keep puppies priced at or below this amount.

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

Hard cap on emitted records.

## Actor input object example

```json
{
  "mode": "byBreed",
  "breed": "golden-retriever",
  "location": "texas",
  "collection": "best-family-dogs",
  "urls": [],
  "gender": "",
  "maxItems": 50
}
```

# Actor output Schema

## `puppies` (type: `string`):

Dataset containing all scraped puppy listings.

# 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 = {
    "mode": "byBreed",
    "breed": "golden-retriever",
    "location": "texas",
    "collection": "best-family-dogs",
    "urls": [],
    "gender": "",
    "maxItems": 50
};

// Run the Actor and wait for it to finish
const run = await client.actor("crawlerbros/nextdaypets-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 = {
    "mode": "byBreed",
    "breed": "golden-retriever",
    "location": "texas",
    "collection": "best-family-dogs",
    "urls": [],
    "gender": "",
    "maxItems": 50,
}

# Run the Actor and wait for it to finish
run = client.actor("crawlerbros/nextdaypets-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 '{
  "mode": "byBreed",
  "breed": "golden-retriever",
  "location": "texas",
  "collection": "best-family-dogs",
  "urls": [],
  "gender": "",
  "maxItems": 50
}' |
apify call crawlerbros/nextdaypets-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,crawlerbros/nextdaypets-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/siIch2tghdsPTauaR/builds/shsA7UVEge22Ll84b/openapi.json
