Integrate powerful crop disease detection capabilities directly into your applications and systems.
Our REST API provides programmatic access to our crop disease detection engine. Get started in minutes with comprehensive documentation and code examples.
Get crop disease detection results in under 2 seconds with our optimized cloud infrastructure.
Industry-standard API key authentication with rate limiting and usage monitoring.
Complete API documentation with code examples in multiple programming languages.
Reliable cloud infrastructure with global CDN and automatic failover capabilities.
Your images are processed securely and not stored on our servers unless explicitly requested.
Clean, intuitive REST API design that follows industry best practices and standards.
curl -X POST https://api.cropcare.hamez.dev/v1/analyze \ -H "Authorization: Bearer YOUR_API_KEY" \ -H "Content-Type: multipart/form-data" \ -F "image=@crop_leaf.jpg" \ -F "crop_type=tomato"
import requests url = "https://api.cropcare.hamez.dev/v1/analyze" headers = { "Authorization": "Bearer YOUR_API_KEY" } files = { "image": open("crop_leaf.jpg", "rb"), "crop_type": (None, "tomato") } response = requests.post(url, headers=headers, files=files) result = response.json()
const formData = new FormData(); formData.append('image', fileInput.files[0]); formData.append('crop_type', 'tomato'); fetch('https://api.cropcare.hamez.dev/v1/analyze', { method: 'POST', headers: { 'Authorization': 'Bearer YOUR_API_KEY' }, body: formData }) .then(response => response.json()) .then(data => console.log(data));
{ "status": "success", "analysis": { "disease_detected": true, "disease_name": "Late Blight", "confidence": 0.94, "severity": "moderate", "treatment_recommendations": [ "Apply copper-based fungicide", "Improve air circulation", "Reduce watering frequency" ], "prevention_tips": [ "Plant resistant varieties", "Ensure proper spacing" ] } }
Pay only for what you use with our transparent pricing model.
Need help integrating? Our developer support team is here to help you get up and running quickly.