Pests & Diseases
Pests and diseases are the common threats to garden plants — insects, mites, fungi, bacteria, and more. Each record includes identification details, damage symptoms or disease indicators, organic and chemical control methods, and regional data. On this page, you will find the full reference for every pest and disease endpoint, including browsing, searching, and lookup by ID.
The pest model
The pest model contains identification information, control methods, regional distribution, and affected plant types for each pest record.
Properties
- Name
id- Type
- string
- Description
Unique identifier for the pest record (UUID).
- Name
commonName- Type
- string
- Description
Common name of the pest (e.g., "Aphids", "Japanese Beetle").
- Name
scientificName- Type
- string | null
- Description
Scientific name, if known. Null when not applicable.
- Name
type- Type
- string
- Description
Pest classification:
insect,mite,nematode,mollusk,mammal, orbird.
- Name
description- Type
- string
- Description
General description of the pest and its behavior.
- Name
identification- Type
- string
- Description
How to identify the pest — physical appearance, size, and distinguishing features.
- Name
damageSymptoms- Type
- string
- Description
Visible signs of damage caused by the pest on affected plants.
- Name
organicControl- Type
- string
- Description
Organic and natural control methods.
- Name
chemicalControl- Type
- string
- Description
Chemical treatment options.
- Name
prevention- Type
- string
- Description
Preventive measures to reduce pest occurrence.
- Name
regions- Type
- string[] | null
- Description
Geographic regions where the pest is commonly found (e.g., "Northeast", "Southeast"). Null when not specified.
- Name
states- Type
- string[] | null
- Description
US states where the pest is prevalent. Null when not specified.
- Name
hardinessZones- Type
- string | null
- Description
USDA hardiness zone range where the pest is active (e.g., "3-11"). Null when not specified.
- Name
peakSeason- Type
- string
- Description
Time of year when the pest is most active.
- Name
affectedPlantTypes- Type
- string[]
- Description
List of plant types commonly targeted by the pest.
- Name
source- Type
- string
- Description
Data source attribution.
The disease model
The disease model contains symptom information, causes, spread mechanisms, control methods, and affected plant types for each disease record.
Properties
- Name
id- Type
- string
- Description
Unique identifier for the disease record (UUID).
- Name
commonName- Type
- string
- Description
Common name of the disease (e.g., "Early Blight", "Powdery Mildew").
- Name
scientificName- Type
- string | null
- Description
Scientific name of the pathogen, if known. Null when not applicable.
- Name
type- Type
- string
- Description
Disease classification:
fungal,bacterial,viral,physiological, oroomycete.
- Name
description- Type
- string
- Description
General description of the disease.
- Name
symptoms- Type
- string
- Description
Visible symptoms on affected plants.
- Name
causes- Type
- string
- Description
What causes the disease — pathogen details and contributing factors.
- Name
spreadMethod- Type
- string
- Description
How the disease spreads between plants.
- Name
favorableConditions- Type
- string
- Description
Environmental conditions that promote disease development.
- Name
organicControl- Type
- string
- Description
Organic and natural control methods.
- Name
chemicalControl- Type
- string
- Description
Chemical treatment options.
- Name
prevention- Type
- string
- Description
Preventive measures to reduce disease occurrence.
- Name
regions- Type
- string[] | null
- Description
Geographic regions where the disease is commonly found. Null when not specified.
- Name
states- Type
- string[] | null
- Description
US states where the disease is prevalent. Null when not specified.
- Name
hardinessZones- Type
- string | null
- Description
USDA hardiness zone range where the disease occurs (e.g., "3-11"). Null when not specified.
- Name
peakSeason- Type
- string
- Description
Time of year when the disease is most prevalent.
- Name
affectedPlantTypes- Type
- string[]
- Description
List of plant types commonly affected by the disease.
- Name
source- Type
- string
- Description
Data source attribution.
List all pests
Browse all pest records with optional filtering. Returns 10 items per page by default.
Optional attributes
- Name
type- Type
- string
- Description
Filter by pest type:
insect,mite,nematode,mollusk,mammal, orbird.
- Name
region- Type
- string
- Description
Filter by geographic region (e.g., "Northeast", "Southeast").
- Name
state- Type
- string
- Description
Filter by US state (e.g., "California", "New York").
- Name
zone- Type
- integer
- Description
Filter by USDA hardiness zone (e.g.,
7).
- Name
plantType- Type
- string
- Description
Filter by affected plant type (e.g., "tomato", "rose").
- Name
page- Type
- integer
- Description
Page number. Defaults to
1.
- Name
perPage- Type
- integer
- Description
Results per page. Defaults to
10.
Request
curl -G "https://verdantly-gardening-api.p.rapidapi.com/v2/pests" \
--data-urlencode "type=insect" \
--data-urlencode "plantType=tomato" \
--data-urlencode "perPage=5" \
-H "X-RapidAPI-Host: verdantly-gardening-api.p.rapidapi.com" \
-H "X-RapidAPI-Key: {apiKey}"
Response
{
"data": [
{
"id": "a3c1e8f0-5b2d-4a19-9c7e-1f3d5a8b2c40",
"commonName": "Aphids",
"scientificName": "Aphidoidea",
"type": "insect",
"description": "Small, soft-bodied insects that feed on plant sap, often found in clusters on new growth.",
"identification": "Tiny (1-3mm), pear-shaped insects in green, black, yellow, or pink. Often found on the undersides of leaves and on tender new shoots.",
"damageSymptoms": "Curled or yellowing leaves, sticky honeydew residue, sooty mold growth, stunted plant growth, and distorted flowers or fruit.",
"organicControl": "Spray with a strong stream of water to dislodge. Apply insecticidal soap or neem oil. Introduce ladybugs or lacewings as natural predators.",
"chemicalControl": "Apply pyrethrin-based insecticides or systemic insecticides such as imidacloprid for severe infestations.",
"prevention": "Encourage beneficial insects, avoid over-fertilizing with nitrogen, use reflective mulch, and inspect new plants before introducing them to the garden.",
"regions": ["Northeast", "Southeast", "Midwest", "Southwest", "West"],
"states": null,
"hardinessZones": "3-11",
"peakSeason": "Spring through early fall",
"affectedPlantTypes": ["tomato", "pepper", "rose", "lettuce", "bean", "squash", "melon"],
"source": "University Extension Services"
}
],
"meta": {
"totalCount": 24,
"page": 1,
"perPage": 5,
"pages": 5
}
}
Search pests
Search pests by name. Matches against the common name and scientific name fields. Returns all matching results.
Required attributes
- Name
q- Type
- string
- Description
Search query string (e.g., "aphid", "japanese beetle").
Request
curl -G "https://verdantly-gardening-api.p.rapidapi.com/v2/pests/search" \
--data-urlencode "q=aphid" \
-H "X-RapidAPI-Host: verdantly-gardening-api.p.rapidapi.com" \
-H "X-RapidAPI-Key: {apiKey}"
Response
{
"data": [
{
"id": "a3c1e8f0-5b2d-4a19-9c7e-1f3d5a8b2c40",
"commonName": "Aphids",
"scientificName": "Aphidoidea",
"type": "insect",
"description": "Small, soft-bodied insects that feed on plant sap, often found in clusters on new growth.",
"identification": "Tiny (1-3mm), pear-shaped insects in green, black, yellow, or pink. Often found on the undersides of leaves and on tender new shoots.",
"damageSymptoms": "Curled or yellowing leaves, sticky honeydew residue, sooty mold growth, stunted plant growth, and distorted flowers or fruit.",
"organicControl": "Spray with a strong stream of water to dislodge. Apply insecticidal soap or neem oil. Introduce ladybugs or lacewings as natural predators.",
"chemicalControl": "Apply pyrethrin-based insecticides or systemic insecticides such as imidacloprid for severe infestations.",
"prevention": "Encourage beneficial insects, avoid over-fertilizing with nitrogen, use reflective mulch, and inspect new plants before introducing them to the garden.",
"regions": ["Northeast", "Southeast", "Midwest", "Southwest", "West"],
"states": null,
"hardinessZones": "3-11",
"peakSeason": "Spring through early fall",
"affectedPlantTypes": ["tomato", "pepper", "rose", "lettuce", "bean", "squash", "melon"],
"source": "University Extension Services"
}
],
"meta": {
"totalCount": 1
}
}
Get pest by ID
Retrieve a single pest record by its UUID. Returns the full pest model including lifecycle data, affected plant families, and a per-plant-type severity summary.
Required attributes
- Name
id- Type
- string
- Description
The UUID of the pest record.
Request
curl "https://verdantly-gardening-api.p.rapidapi.com/v2/pests/a3c1e8f0-5b2d-4a19-9c7e-1f3d5a8b2c40" \
-H "X-RapidAPI-Host: verdantly-gardening-api.p.rapidapi.com" \
-H "X-RapidAPI-Key: {apiKey}"
Response
{
"data": {
"id": "a3c1e8f0-5b2d-4a19-9c7e-1f3d5a8b2c40",
"commonName": "Aphids",
"scientificName": "Aphidoidea",
"type": "insect",
"description": "Small, soft-bodied insects that feed on plant sap, often found in clusters on new growth. Over 4,000 species exist, with around 250 considered serious pests for agriculture and gardening.",
"identification": "Tiny (1-3mm), pear-shaped insects in green, black, yellow, or pink. Often found on the undersides of leaves and on tender new shoots. Some species are winged.",
"damageSymptoms": "Curled or yellowing leaves, sticky honeydew residue, sooty mold growth, stunted plant growth, and distorted flowers or fruit.",
"organicControl": "Spray with a strong stream of water to dislodge. Apply insecticidal soap or neem oil. Introduce ladybugs or lacewings as natural predators.",
"chemicalControl": "Apply pyrethrin-based insecticides or systemic insecticides such as imidacloprid for severe infestations.",
"prevention": "Encourage beneficial insects, avoid over-fertilizing with nitrogen, use reflective mulch, and inspect new plants before introducing them to the garden.",
"regions": ["Northeast", "Southeast", "Midwest", "Southwest", "West"],
"states": ["California", "Florida", "Texas", "New York", "Ohio"],
"hardinessZones": "3-11",
"peakSeason": "Spring through early fall",
"affectedPlantTypes": ["tomato", "pepper", "rose", "lettuce", "bean", "squash", "melon"],
"source": "University Extension Services",
"lifeCycle": "Aphids reproduce rapidly — females can produce 40-60 offspring per generation without mating. Multiple generations occur per growing season, with populations peaking in warm weather.",
"affectedPlantFamilies": ["Solanaceae", "Fabaceae", "Cucurbitaceae", "Rosaceae", "Asteraceae"],
"affectedPlantTypeSummary": [
{ "plantType": "tomato", "severity": "high", "varietyCount": 312 },
{ "plantType": "pepper", "severity": "high", "varietyCount": 187 },
{ "plantType": "rose", "severity": "moderate", "varietyCount": 94 },
{ "plantType": "lettuce", "severity": "high", "varietyCount": 156 },
{ "plantType": "bean", "severity": "moderate", "varietyCount": 203 }
]
},
"meta": {
"version": "v2"
}
}
List all diseases
Browse all disease records with optional filtering. Returns 10 items per page by default.
Optional attributes
- Name
type- Type
- string
- Description
Filter by disease type:
fungal,bacterial,viral,physiological, oroomycete.
- Name
region- Type
- string
- Description
Filter by geographic region (e.g., "Northeast", "Southeast").
- Name
state- Type
- string
- Description
Filter by US state (e.g., "California", "New York").
- Name
zone- Type
- integer
- Description
Filter by USDA hardiness zone (e.g.,
7).
- Name
plantType- Type
- string
- Description
Filter by affected plant type (e.g., "tomato", "rose").
- Name
page- Type
- integer
- Description
Page number. Defaults to
1.
- Name
perPage- Type
- integer
- Description
Results per page. Defaults to
10.
Request
curl -G "https://verdantly-gardening-api.p.rapidapi.com/v2/diseases" \
--data-urlencode "type=fungal" \
--data-urlencode "plantType=tomato" \
--data-urlencode "perPage=5" \
-H "X-RapidAPI-Host: verdantly-gardening-api.p.rapidapi.com" \
-H "X-RapidAPI-Key: {apiKey}"
Response
{
"data": [
{
"id": "b7d2f4a1-8e3c-4b56-a09d-2e4f6c8a1b30",
"commonName": "Early Blight",
"scientificName": "Alternaria solani",
"type": "fungal",
"description": "A common fungal disease affecting tomatoes, potatoes, and other solanaceous crops. Causes characteristic target-shaped spots on leaves and can significantly reduce yields.",
"symptoms": "Dark brown to black concentric rings (target spots) on lower leaves first, progressing upward. Leaves yellow and drop prematurely. Dark, sunken lesions on stems and fruit.",
"causes": "Caused by the fungus Alternaria solani, which overwinters in infected plant debris and soil. Spores spread by wind, rain splash, and overhead irrigation.",
"spreadMethod": "Wind-dispersed spores, rain splash, contaminated tools, and infected transplants. The fungus can survive in soil and plant debris for at least one year.",
"favorableConditions": "Warm temperatures (75-85°F), high humidity, prolonged leaf wetness, and stressed or nutrient-deficient plants. Most severe during periods of alternating wet and dry weather.",
"organicControl": "Remove infected leaves immediately. Apply copper-based fungicides or Bacillus subtilis products. Use compost tea as a foliar spray to boost plant immunity.",
"chemicalControl": "Apply chlorothalonil or mancozeb preventively every 7-10 days during favorable conditions. Rotate fungicide classes to prevent resistance.",
"prevention": "Rotate crops on a 3-year cycle, stake plants for airflow, water at the base to keep foliage dry, mulch to prevent soil splash, and remove plant debris at season end.",
"regions": ["Northeast", "Southeast", "Midwest", "Southwest", "West"],
"states": null,
"hardinessZones": "3-11",
"peakSeason": "Mid-summer through fall",
"affectedPlantTypes": ["tomato", "potato", "pepper", "eggplant"],
"source": "University Extension Services"
}
],
"meta": {
"totalCount": 18,
"page": 1,
"perPage": 5,
"pages": 4
}
}
Search diseases
Search diseases by name. Matches against the common name and scientific name fields. Returns all matching results.
Required attributes
- Name
q- Type
- string
- Description
Search query string (e.g., "blight", "powdery mildew").
Request
curl -G "https://verdantly-gardening-api.p.rapidapi.com/v2/diseases/search" \
--data-urlencode "q=blight" \
-H "X-RapidAPI-Host: verdantly-gardening-api.p.rapidapi.com" \
-H "X-RapidAPI-Key: {apiKey}"
Response
{
"data": [
{
"id": "b7d2f4a1-8e3c-4b56-a09d-2e4f6c8a1b30",
"commonName": "Early Blight",
"scientificName": "Alternaria solani",
"type": "fungal",
"description": "A common fungal disease affecting tomatoes, potatoes, and other solanaceous crops. Causes characteristic target-shaped spots on leaves and can significantly reduce yields.",
"symptoms": "Dark brown to black concentric rings (target spots) on lower leaves first, progressing upward. Leaves yellow and drop prematurely. Dark, sunken lesions on stems and fruit.",
"causes": "Caused by the fungus Alternaria solani, which overwinters in infected plant debris and soil. Spores spread by wind, rain splash, and overhead irrigation.",
"spreadMethod": "Wind-dispersed spores, rain splash, contaminated tools, and infected transplants.",
"favorableConditions": "Warm temperatures (75-85°F), high humidity, prolonged leaf wetness, and stressed or nutrient-deficient plants.",
"organicControl": "Remove infected leaves immediately. Apply copper-based fungicides or Bacillus subtilis products.",
"chemicalControl": "Apply chlorothalonil or mancozeb preventively every 7-10 days during favorable conditions.",
"prevention": "Rotate crops on a 3-year cycle, stake plants for airflow, water at the base to keep foliage dry, mulch to prevent soil splash.",
"regions": ["Northeast", "Southeast", "Midwest", "Southwest", "West"],
"states": null,
"hardinessZones": "3-11",
"peakSeason": "Mid-summer through fall",
"affectedPlantTypes": ["tomato", "potato", "pepper", "eggplant"],
"source": "University Extension Services"
},
{
"id": "c8e3a5b2-9f4d-4c67-b10e-3f5a7d9b2c41",
"commonName": "Late Blight",
"scientificName": "Phytophthora infestans",
"type": "oomycete",
"description": "A devastating oomycete disease infamous for causing the Irish Potato Famine. Spreads rapidly in cool, wet conditions and can destroy entire crops within days.",
"symptoms": "Water-soaked, dark green to brown lesions on leaves that spread rapidly. White fuzzy growth on leaf undersides in humid conditions. Brown, firm rot on fruit.",
"causes": "Caused by the oomycete Phytophthora infestans. Unlike true fungi, oomycetes are water molds that thrive in cool, wet environments.",
"spreadMethod": "Wind-dispersed sporangia can travel miles. Rain splash, infected seed potatoes, and volunteer plants. Spreads extremely fast in favorable weather.",
"favorableConditions": "Cool temperatures (50-70°F), high humidity above 90%, and prolonged leaf wetness. Most dangerous during cool, rainy periods.",
"organicControl": "Remove and destroy infected plants immediately. Apply copper-based fungicides preventively. Do not compost infected material.",
"chemicalControl": "Apply mancozeb or chlorothalonil preventively. Use systemic fungicides like mefenoxam for active infections.",
"prevention": "Plant resistant varieties, avoid overhead watering, ensure good air circulation, destroy volunteer potatoes, and monitor weather forecasts for blight-favorable conditions.",
"regions": ["Northeast", "Southeast", "Midwest", "West"],
"states": null,
"hardinessZones": "3-10",
"peakSeason": "Late summer through fall",
"affectedPlantTypes": ["tomato", "potato"],
"source": "University Extension Services"
}
],
"meta": {
"totalCount": 2
}
}
Get disease by ID
Retrieve a single disease record by its UUID. Returns the full disease model including a per-plant-type susceptibility summary.
Required attributes
- Name
id- Type
- string
- Description
The UUID of the disease record.
Request
curl "https://verdantly-gardening-api.p.rapidapi.com/v2/diseases/b7d2f4a1-8e3c-4b56-a09d-2e4f6c8a1b30" \
-H "X-RapidAPI-Host: verdantly-gardening-api.p.rapidapi.com" \
-H "X-RapidAPI-Key: {apiKey}"
Response
{
"data": {
"id": "b7d2f4a1-8e3c-4b56-a09d-2e4f6c8a1b30",
"commonName": "Early Blight",
"scientificName": "Alternaria solani",
"type": "fungal",
"description": "A common fungal disease affecting tomatoes, potatoes, and other solanaceous crops. Causes characteristic target-shaped spots on leaves and can significantly reduce yields if left untreated.",
"symptoms": "Dark brown to black concentric rings (target spots) on lower leaves first, progressing upward. Leaves yellow and drop prematurely. Dark, sunken lesions on stems and fruit. Fruit lesions appear near the stem end with dark, leathery, concentric rings.",
"causes": "Caused by the fungus Alternaria solani, which overwinters in infected plant debris and soil. Spores spread by wind, rain splash, and overhead irrigation. The pathogen can persist in soil for multiple seasons.",
"spreadMethod": "Wind-dispersed spores, rain splash, contaminated tools, and infected transplants. The fungus can survive in soil and plant debris for at least one year.",
"favorableConditions": "Warm temperatures (75-85°F), high humidity, prolonged leaf wetness, and stressed or nutrient-deficient plants. Most severe during periods of alternating wet and dry weather.",
"organicControl": "Remove infected leaves immediately. Apply copper-based fungicides or Bacillus subtilis products. Use compost tea as a foliar spray to boost plant immunity.",
"chemicalControl": "Apply chlorothalonil or mancozeb preventively every 7-10 days during favorable conditions. Rotate fungicide classes to prevent resistance.",
"prevention": "Rotate crops on a 3-year cycle, stake plants for airflow, water at the base to keep foliage dry, mulch to prevent soil splash, and remove plant debris at season end.",
"regions": ["Northeast", "Southeast", "Midwest", "Southwest", "West"],
"states": ["Florida", "California", "New York", "Ohio", "North Carolina"],
"hardinessZones": "3-11",
"peakSeason": "Mid-summer through fall",
"affectedPlantTypes": ["tomato", "potato", "pepper", "eggplant"],
"source": "University Extension Services",
"affectedPlantTypeSummary": [
{ "plantType": "tomato", "susceptibility": "high", "varietyCount": 487 },
{ "plantType": "potato", "susceptibility": "high", "varietyCount": 112 },
{ "plantType": "pepper", "susceptibility": "moderate", "varietyCount": 203 },
{ "plantType": "eggplant", "susceptibility": "moderate", "varietyCount": 45 }
]
},
"meta": {
"version": "v2"
}
}