AgricultureGPU3 credits

PlantCV — Crop Disease Detection

Detect crop disease and quantify plant phenotypes from photos

PlantCV is the de facto open-source library for plant phenotyping. SciRouter exposes it plus disease-detection models (PlantDoc, FarmVibes) as a unified API: upload a photo of a leaf, get back disease class, severity, and morphological measurements. 81% of large farms say they're willing to adopt AI — this makes that trivial.

$0.03
per API call
3
credits per call
/v1/agriculture/detect-disease
API endpoint

Features

Disease class + severity + affected area
PlantCV morphological measurements
PlantDoc + FarmVibes backbones
Works on mobile phone photos

Quick Start

PlantCV + PlantDoc — Python Examplepython
import requests

r = requests.post(
    "https://scirouter-gateway-production.up.railway.app/v1/agriculture/detect-disease",
    headers={"Authorization": "Bearer sk-sci-..."},
    json={
        "image_url": "https://example.com/wheat-leaf.jpg",
        "crop": "wheat",
    },
)
result = r.json()["data"]
print(f"Disease: {result['disease']} (severity {result['severity']})")
print(f"Affected area: {result['affected_pct']:.0%}")

Use Cases

1

Precision agriculture

2

Farm health monitoring

3

University crop research

4

Citizen science apps

Start Using PlantCV

500 free credits every month. No credit card required.