Análisis del canal auditivo
Sube una foto de la oreja de tu mascota para analizar infecciones, ácaros, acumulación de cera y otras condiciones del oído.
POST
/v1/ear-analysisImagen5 Creditos por llamada
| Campo | Tipo | Requerido | Descripción |
|---|---|---|---|
image | string | Sí | Datos de imagen codificados en Base64 (JPG/PNG/WEBP, máx 4MB) |
animalType | string | No | Tipo de animal para análisis (ej. dog, cat, rabbit, hamster) |
language | string | No | Código de idioma de respuesta (en, zh, es) |
API Playground
Idioma
Ejemplo de solicitud
bash
curl -X POST https://www.poomi.pet/api/v1/ear-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": {
"severity": "moderate",
"symptoms": [
"brown waxy discharge",
"redness of ear canal",
"mild swelling of ear flap"
],
"assessment": "Brown waxy discharge with thick consistency is characteristic of Malassezia yeast overgrowth. Canal redness shows active inflammation. Skin hyperpigmentation inside the ear suggests this may be recurring. Untreated yeast infections can progress to the middle ear, which is harder to treat.",
"health_score": 4,
"ear_condition": "yeast infection (Malassezia)",
"possible_causes": [
"Malassezia yeast overgrowth",
"moisture trapped after bathing",
"underlying allergies"
],
"recommendations": [
"Vet visit for cytology and antifungal treatment",
"Do not use cotton swabs — use vet-recommended ear flush only",
"Dry ears thoroughly after water exposure",
"Ask about allergy testing if this is recurring"
],
"health_score_max": 10
}
}