# ASPCA plant detail extractor

**Use case:** 

Extract ASPCA plant safety data for selected plants such as Aloe, Lily, and Sago Palm for pet apps and catalogs.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://www.aspca.org/pet-care/aspca-poison-control/toxic-and-non-toxic-plants"
    }
  ],
  "plantNames": [
    "Aloe",
    "Lily",
    "Sago Palm"
  ],
  "toxicity": "all",
  "animalTypes": [
    "dogs",
    "cats",
    "horses"
  ],
  "maxItems": 10
}
```

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