Poomi

Análisis de heces

Sube una foto de las heces de tu mascota para analizar indicadores de salud potenciales y generar un informe detallado.

POST/v1/feces-analysis
Imagen5 Creditos por llamada
CampoTipoRequeridoDescripción
imagestringDatos de imagen codificados en Base64 (JPG/PNG/WEBP, máx 4MB)
animalTypestringNoTipo de animal para análisis (ej. dog, cat, rabbit, hamster)
languagestringNoCódigo de idioma de respuesta (en, zh, es)

API Playground

Idioma

Ejemplo de solicitud

bash
curl -X POST https://www.poomi.pet/api/v1/feces-analysis \
  -H "Authorization: Bearer pk_your_api_key_here" \
  -H "Content-Type: application/json" \
  -d '{
    "image": "base64_encoded_data",
    "animalType": "dog",
    "language": "en"
  }'

Ejemplo de respuesta

json200 OK
{
  "success": true,
  "request_id": "req_xxxxxxxx",
  "data": {
    "color": "dark yellow-brown",
    "assessment": "Significant mucus coating indicates large intestine irritation. Undigested food particles suggest malabsorption, possibly from pancreatic insufficiency or rapid gut transit. The combination of mucus, undigested food, and soft texture warrants professional evaluation to rule out IBD or infection.",
    "risk_level": "high",
    "consistency": "soft and mucoid",
    "health_score": 3,
    "abnormalities": [
      "excessive mucus coating",
      "undigested food particles"
    ],
    "possible_causes": [
      "intestinal inflammation (IBD)",
      "bacterial infection",
      "dietary intolerance"
    ],
    "recommendations": [
      "Vet visit within 24-48 hours for fecal testing",
      "Collect a fresh stool sample and refrigerate for the vet",
      "Switch to bland diet (boiled chicken and rice) temporarily",
      "Monitor hydration and bowel movement frequency"
    ],
    "health_score_max": 10
  }
}
Análisis de heces - Poomi Docs