Discover/Plantix API
live

Plantix APIplantix.net

Access Plantix data on 700+ plant diseases, pests, and crop cultivation guides via 7 structured endpoints covering symptoms, treatments, and growth stages.

Endpoint health
verified 3d ago
list_crops
get_plant_disease_detail
list_plant_diseases
get_crop_detail
get_crop_probable_diseases
7/7 passing latest checkself-healing
Endpoints
7
Updated
26d ago

What is the Plantix API?

The Plantix API exposes 7 endpoints covering plant diseases, pests, crop cultivation, and agricultural blog content sourced from plantix.net. The list_plant_diseases endpoint returns a filterable index of 700+ diseases and pests with names, scientific names, pathogen types, and affected crop IDs. Companion endpoints deliver full disease detail including symptoms, organic and chemical control recommendations, per-growth-stage disease risk for specific crops, and complete crop care attributes.

Try it
Filter by crop ID in uppercase (e.g. TOMATO, WHEAT). Use list_crops to get available IDs.
Search keyword to filter disease names.
Filter by pathogen type.
api.parse.bot/scraper/4d5a37ee-9dd2-40f4-8ca2-a85caf590c32/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/4d5a37ee-9dd2-40f4-8ca2-a85caf590c32/list_plant_diseases?crop=TOMATO&query=blight&pathogen=Fungi' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace plantix-net-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.

from parse_apis.plantix_agricultural_database_api import Plantix, PathogenType, DiseaseSummary, Crop, CropDetail, ArticleSummary

plantix = Plantix()

# Search for fungal diseases affecting tomato
for disease in plantix.diseasesummaries.search(crop="TOMATO", pathogen=PathogenType.FUNGI):
    print(disease.name, disease.scientific_name, disease.slug)

    # Get full disease details
    full = disease.details()
    print(full.symptoms, full.what_caused_it)
    print(full.recommendations.organic_control, full.recommendations.chemical_control)
    for measure in full.preventive_measures:
        print(measure)
    break

# List all crops and get detail for one
for crop in plantix.crops.list():
    print(crop.id, crop.name, crop.slug)

# Construct a crop by ID and get its detail
tomato = plantix.crop(id="TOMATO")
detail = tomato.detail()
print(detail.name, detail.climate, detail.care)
print(detail.attributes.ph_range, detail.attributes.temp_range)
print(detail.npk_optimal.n, detail.npk_optimal.p, detail.npk_optimal.k)
print(detail.companions.good, detail.companions.bad)

# Get probable diseases by growth stage
stages = tomato.probable_diseases()
for stage_name, diseases in stages.stages.items():
    print(stage_name)
    for d in diseases:
        print(d.name, d.pathogen_type)

# List and read blog articles
for article in plantix.articlesummaries.list(query="wheat"):
    print(article.title, article.date, article.slug)
    full_article = article.details()
    print(full_article.title, full_article.url)
    break
All endpoints · 7 totalmissing one? ·

List all plant diseases and pests from the library. Supports filtering by keyword, crop, and pathogen type. Returns all matching diseases with basic metadata including name, scientific name, pathogen classification, and affected crops. Client-side filtering is applied after fetching the full library.

Input
ParamTypeDescription
cropstringFilter by crop ID in uppercase (e.g. TOMATO, WHEAT). Use list_crops to get available IDs.
querystringSearch keyword to filter disease names.
pathogenstringFilter by pathogen type.
Response
{
  "type": "object",
  "fields": {
    "total": "integer count of matching diseases",
    "diseases": "array of disease summaries"
  },
  "sample": {
    "data": {
      "total": 723,
      "diseases": [
        {
          "id": 600051,
          "name": "Stink Bugs on Maize, Millet and Sorghum",
          "slug": "stink-bugs-on-maize-millet-and-sorghum",
          "thumbnail": "https://content.peat-cloud.com/stink-bugs-on-maize,-millet-and-sorghum-sorghum-1569848445.jpg",
          "pathogen_type": "Insect",
          "affected_crops": [
            "MILLET",
            "SORGHUM",
            "MAIZE"
          ],
          "scientific_name": "Euschistus spp."
        }
      ]
    },
    "status": "success"
  }
}

About the Plantix API

Disease and Pest Data

The list_plant_diseases endpoint accepts three optional filters — crop (uppercase crop ID such as TOMATO), query (keyword match on disease name), and pathogen (pathogen type string) — and returns a total count plus a diseases array of summaries. To retrieve full detail, pass both the numeric id and slug from those summaries to get_plant_disease_detail. The detail response includes symptoms, a bullet_points array of key symptom descriptions, a what_caused_it explanation, and a recommendations object with separate organic_control and chemical_control text fields, plus an array of affected_crops IDs.

Crop Cultivation Data

list_crops returns every crop in the library with its id, name, and slug. Passing a slug to get_crop_detail yields structured cultivation data: climate, soil_types, a numeric npk_optimal object (N, P, K values with unit), an attributes object covering watering, cultivation method, labour level, pH range, temperature range, and plant spacing, plus companions and rotation objects that each hold good and bad arrays of crop IDs. A separate endpoint, get_crop_probable_diseases, organises disease risk by growth stage — Seedling, Vegetative, Flowering, Fruiting, Harvesting — returning each disease's id, name, pathogen_type, and scientific_name per stage.

Blog Content

list_blog_articles supports page pagination and a query keyword filter on article titles, returning title, slug, date, and excerpt per article. get_blog_article accepts a slug and returns the full content text along with the canonical url and title. This makes the blog content machine-readable for downstream summarisation or search indexing.

Reliability & maintenanceVerified

The Plantix API is a managed, monitored endpoint for plantix.net — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when plantix.net changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official plantix.net API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
3d ago
Latest check
7/7 endpoints passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Build a crop protection tool that surfaces organic and chemical control options for a given disease using the recommendations field from get_plant_disease_detail.
  • Generate growth-stage-aware disease alerts for farmers by querying get_crop_probable_diseases with the current crop and phenological stage.
  • Populate a companion planting guide using the companions.good and companions.bad arrays returned by get_crop_detail.
  • Index Plantix blog articles for a site search or newsletter digest using list_blog_articles with keyword filtering and get_blog_article for full text.
  • Create NPK fertilisation recommendations by reading the npk_optimal object and attributes.ph_range from crop detail responses.
  • Build a disease lookup widget filtered by crop (e.g. WHEAT) and pathogen type using list_plant_diseases query parameters.
  • Automate crop rotation planning by reading the rotation.good and rotation.bad crop ID arrays from multiple crop detail responses.
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min

One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does Plantix offer an official developer API?+
Plantix does not publish a public developer API or documented REST endpoints for external use. Their platform is primarily a mobile app and web service aimed at farmers, without a publicly available API key program.
What does `get_plant_disease_detail` return beyond a disease name?+
It returns a symptoms description, a bullet_points array for quick scanning, the pathogen_type, a what_caused_it string, an affected_crops array of crop IDs, image URLs, the scientific_name, and a recommendations object with distinct organic_control and chemical_control text fields.
Can I retrieve disease risk for a specific crop growth stage?+
get_crop_probable_diseases accepts a crop slug and returns a stages object whose keys are stage names (Seedling, Vegetative, Flowering, Fruiting, Harvesting). Each stage maps to an array of disease objects with id, name, pathogen_type, and scientific_name, so you can filter risk by phenological phase.
Does the API expose diagnostic image recognition or photo-based disease identification?+
Not currently. The API covers textual disease data, crop cultivation attributes, growth-stage disease risk, and blog content. Image URLs are returned as metadata but there is no endpoint for submitting a photo and receiving a diagnosis. You can fork this API on Parse and revise it to add an image-based identification endpoint if that capability becomes available.
How does pagination work for blog articles, and can I search by topic?+
list_blog_articles accepts an integer page parameter for pagination and a query string that filters results by article title keyword. The response includes the current page number, and each article object carries a slug you can pass to get_blog_article for full text. Filtering is limited to title matching; there is no tag or category filter parameter currently exposed.
Page content last updated . Spec covers 7 endpoints from plantix.net.
Related APIs in OtherSee all →
plantvillage.psu.edu API
Search for crops, diseases, and pests to access detailed agricultural knowledge including treatments, management strategies, and educational content like blog posts and videos. Get comprehensive plant health information with images and disease identification to help diagnose and manage crop problems.
cabi.org API
Search and retrieve detailed information about plant diseases from the CABI Digital Library, including disease characteristics, symptoms, and management strategies. Find specific disease data by name or browse the comprehensive Compendium to identify and understand plant health issues.
plantsforafuture.org API
Search for edible and medicinal plants to discover their culinary and health uses, cultivation tips, and physical characteristics. Browse the comprehensive plant database alphabetically or look up detailed information about specific plants' benefits and growing requirements.
rhsplants.co.uk API
Search and browse the RHS Plants catalogue to discover thousands of plants and gardening products. Retrieve detailed specifications, growing conditions, images, and purchasing options for any plant, and filter or sort results by category or keyword.
identify.plantnet.org API
Identify and explore plant species by searching through Pl@ntNet's comprehensive botanical database to access detailed information like taxonomic families, genera, species descriptions, photos, and community observations. Track plant distributions, view contribution trends, and discover expert contributors within the platform's collaborative plant identification community.
mdpi.com API
Access MDPI's open-access academic content programmatically. Search across thousands of peer-reviewed articles, retrieve full structured text, extract key findings, and browse journal metadata including impact factors and CiteScores.
agweb.com API
Access real-time agricultural news, commodity futures prices for corn and soybeans, and local cash grain bids to stay informed on market trends and pricing. Search articles by category, view detailed market analysis, and get weekend market reports to make informed farming and trading decisions.
upag.gov.in API
Access comprehensive agricultural data including crop production estimates, minimum support prices (MSP), crop yield trends, and planting calendars for both domestic and international markets. Search through agricultural reports and statistics to track commodity prices, production forecasts, and seasonal crop information.