VGG16 Architecture

FlockScan API

Real-time poultry infection detection powered by Deep Learning. Integrate our model into your own farming solutions.

System Operational

Authentication

Currently, the FlockScan public API does not require an API key for development use. Please use responsibly to ensure availability for all users.

Detection Endpoint

POST /predict

Submit a JPG or PNG image of a poultry sample to receive a classification and confidence score.
Note: Base64 strings are no longer supported; please use multipart form data.

Request Format (Multipart Form Data)

cURL
curl -X POST https://coccicheck.freedynamicdns.org/predict \
  -F "image=@sample_image.jpg"

Response Example

JSON
{
  "prediction": "Coccidiosis",
  "confidence": "98.4"
}

Live Demo

Test the model right now by uploading a sample image.

Training Endpoint

GET / POST /train

Triggers the DVC pipeline to re-sync data and re-train the model. This is an administrative endpoint.

Success Response
Training done successfully!