Ear Canal Analysis
Upload a photo of your pet's ear to analyze for infections, mites, wax buildup, and other ear conditions.
POST
/v1/ear-analysisImage5 Credits per call
| Field | Type | Required | Description |
|---|---|---|---|
image | string | Yes | Base64-encoded image data (JPG/PNG/WEBP, max 4MB) |
animalType | string | No | Animal type for analysis (e.g. dog, cat, rabbit, hamster) |
language | string | No | Response language code (en, zh, es) |
API Playground
Language
Request Example
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"
}'Response Example
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
}
}