Detect wildfire smoke from camera feeds in real-time with AI. One API call, instant results.
Purpose-built for wildfire detection at scale.
Trained on thousands of real wildfire images. Low false positives with confidence scoring on every detection.
Automatically switches between day and night optimized models for accurate detection in all lighting conditions.
Batched GPU inference processes 40–80 images/sec on a single NVIDIA T4. Async downloads keep throughput high.
From camera image to smoke detection in one API call.
File upload, URL, or batch of URLs
Resize 1280×736, normalize, BGR→RGB
Smoke detection model analyzes the image
Bounding boxes, classification
Sign up for a free API key, then start detecting smoke with a single API call.
curl -X POST https://indicus.ai/predict \ -H "X-API-Key: sk-wildfire-a1b2c3..." \ -F "file=@Aliso_Laguna_1_a1782-e-mobo-c.jpg" # Response: # {"detections":[{"xmin":120.5,"ymin":80.3,"xmax":340.2,"ymax":250.1, # "confidence":0.72,"name":"Smoke"}], "inference_ms":85.4, "model":"day"}
# From URL curl -X POST "https://indicus.ai/predict/url?url=https://example.com/camera.jpg" \ -H "X-API-Key: sk-wildfire-a1b2c3..." # Batch (multiple URLs) curl -X POST https://indicus.ai/predict/batch \ -H "X-API-Key: sk-wildfire-a1b2c3..." \ -H "Content-Type: application/json" \ -d '["https://url1/img.jpg","https://url2/img.jpg"]' # Check remaining calls curl https://indicus.ai/usage -H "X-API-Key: sk-wildfire-a1b2c3..."
Or use the HTML signup form — no curl needed.
RESTful JSON API. Interactive docs at /docs.
| Endpoint | Method | Auth | Description |
|---|---|---|---|
/predict | POST | X-API-Key | Single image inference via file upload |
/predict/url | POST | X-API-Key | Inference from image URL |
/predict/batch | POST | X-API-Key | Batch inference on multiple URLs (up to 16) |
Start free, scale as you grow. No credit card required.