Análisis de piel
Sube una foto de la condición de la piel de tu mascota para analizar erupciones, lesiones, pérdida de pelo y otros indicadores dermatológicos.
POST
/v1/skin-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/skin-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": [
"redness",
"hair loss",
"moist weeping surface"
],
"assessment": "Well-defined circular area of acute moist dermatitis on the ventral abdomen. The moist, weeping surface with hair loss indicates active inflammation and likely bacterial colonization. Belly location suggests contact allergy or self-trauma lick cycle. Without intervention, hotspots like this can double in size within 24 hours.",
"health_score": 4,
"area_affected": "belly",
"condition_type": "hotspot",
"possible_causes": [
"allergic contact dermatitis",
"secondary bacterial infection",
"self-trauma from excessive licking"
],
"recommendations": [
"Apply e-collar to stop licking immediately",
"Clean area with dilute chlorhexidine 2x daily",
"Vet visit within 48 hours for possible antibiotics",
"Check for fleas or environmental allergens as triggers"
],
"health_score_max": 10
}
}