# Non-toxic dog and cat plant scraper

**Use case:** 

Scrape ASPCA non-toxic dog and cat plant data for pet-safe plant catalogs, ecommerce enrichment, and apps.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://www.aspca.org/pet-care/aspca-poison-control/toxic-and-non-toxic-plants"
    }
  ],
  "plantNames": [
    "Aloe",
    "Acorn Squash"
  ],
  "toxicity": "non-toxic",
  "animalTypes": [
    "dogs",
    "cats"
  ],
  "maxItems": 100
}
```

## Output

```json
{
  "commonName": {
    "label": "Common name"
  },
  "scientificName": {
    "label": "Scientific name"
  },
  "family": {
    "label": "Family"
  },
  "toxicityClass": {
    "label": "Toxicity class"
  },
  "toxicity": {
    "label": "ASPCA toxicity text"
  },
  "nonToxicity": {
    "label": "ASPCA non-toxicity text"
  },
  "toxicToDogs": {
    "label": "Toxic to dogs"
  },
  "toxicToCats": {
    "label": "Toxic to cats"
  },
  "toxicToHorses": {
    "label": "Toxic to horses"
  },
  "nonToxicToDogs": {
    "label": "Non-toxic to dogs"
  },
  "nonToxicToCats": {
    "label": "Non-toxic to cats"
  },
  "nonToxicToHorses": {
    "label": "Non-toxic to horses"
  },
  "toxicPrinciples": {
    "label": "Toxic principles"
  },
  "clinicalSigns": {
    "label": "Clinical signs"
  },
  "imageUrl": {
    "label": "Image URL"
  },
  "aliases": {
    "label": "Aliases"
  },
  "sourceUrl": {
    "label": "Source URL"
  },
  "scrapedAt": {
    "label": "Scraped at"
  }
}
```

## About this Actor

This example demonstrates how to use [ASPCA Toxic & Non-Toxic Plants Scraper](https://apify.com/automation-lab/aspca-toxic-non-toxic-plants-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/automation-lab/aspca-toxic-non-toxic-plants-scraper) to learn more, explore other use cases, and run it yourself.