Poomi
App

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/api/v1/ear-analysis
Imagen5 Creditos por llamada
CampoTipoRequeridoDescripción
imagestringDatos de imagen codificados en Base64 (JPG/PNG/WEBP, máx 3MB)
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/ear-analysis \
  -H "Authorization: Bearer pk_your_api_key_here" \
  -H "Content-Type: application/json" \
  -d '{
    "image": "base64_encoded_data",
    "animalType": "dog",
    "language": "es"
  }'

Campos de respuesta

CampoTipoRequeridoDescripción
severitystringOverall severity of the visible ear findings
conditionstringShort owner-facing label for the visible ear condition
summarystringA concise 2 to 4 sentence summary covering the key visible observations, the overall interpretation, and any important limitation
home_carearray<string>Practical at-home care or monitoring steps. MUST contain at least 2 items, even when the findings look normal — fall back to routine daily care or monitoring suggestions in that case.
vet_advicearray<string>When veterinary follow-up is appropriate based on the visible findings. Use an empty array when none are needed.

Schema de respuesta

json-schema
{
  "type": "object",
  "properties": {
    "severity": {
      "type": "string",
      "description": "Overall severity of the visible ear findings",
      "enum": [
        "normal",
        "mild",
        "moderate",
        "severe",
        "inconclusive"
      ]
    },
    "condition": {
      "type": "string",
      "description": "Short owner-facing label for the visible ear condition"
    },
    "summary": {
      "type": "string",
      "description": "A concise 2 to 4 sentence summary covering the key visible observations, the overall interpretation, and any important limitation"
    },
    "home_care": {
      "type": "array",
      "description": "Practical at-home care or monitoring steps. MUST contain at least 2 items, even when the findings look normal — fall back to routine daily care or monitoring suggestions in that case.",
      "items": {
        "type": "string"
      },
      "minItems": 2
    },
    "vet_advice": {
      "type": "array",
      "description": "When veterinary follow-up is appropriate based on the visible findings. Use an empty array when none are needed.",
      "items": {
        "type": "string"
      }
    }
  },
  "required": [
    "severity",
    "condition",
    "summary",
    "home_care",
    "vet_advice"
  ],
  "additionalProperties": false
}

Ejemplo de respuesta

json200 OK
{
  "success": true,
  "request_id": "req_xxxxxxxx",
  "data": {
    "severity": "normal",
    "condition": "appears within normal limits",
    "summary": "The visible ear entrance looks pink and reasonably clean in this image. I do not see obvious redness, discharge, swelling, or heavy debris in the visible portion. The photo does not show the deep canal, but the visible area appears within normal limits.",
    "home_care": [
      "Do a quick visual ear check once a week for redness, discharge, or unusual smell",
      "Gently dry the outer ear after baths or swimming to prevent moisture buildup",
      "Watch for head shaking, scratching at the ears, or new odor and recheck if any appear"
    ],
    "vet_advice": []
  }
}
Análisis del canal auditivo - Poomi Docs