Integra procesamiento de fotos de nivel profesional en tus aplicaciones. IA de última generación para fotos de documentos, detección facial y más.
Todas las solicitudes API requieren una clave API
Authorization: Bearer isp_your_api_key_here
Endpoints potentes para todas tus necesidades de procesamiento de fotos
/api/v1/remove-background
Elimina el fondo de una imagen con precisión perfecta. Devuelve PNG transparente o aplica color de fondo personalizado.
curl -X POST https://api.ishotaphoto.com/v1/remove-background \
-H "Authorization: Bearer isp_your_api_key" \
-H "Content-Type: application/json" \
-d '{
"image_url": "https://example.com/photo.jpg",
"output_format": "png",
"background_color": null
}'
{
"success": true,
"credits_used": 1,
"credits_remaining": 249,
"result": {
"image_url": "https://cdn.ishotaphoto.com/results/abc123.png",
"expires_at": "2025-01-08T12:00:00Z"
}
}
/api/v1/replace-background
Reemplaza fondos con colores sólidos, degradados o imágenes personalizadas. Perfecto para fotografía de productos y retratos.
curl -X POST https://api.ishotaphoto.com/v1/replace-background \
-H "Authorization: Bearer isp_your_api_key" \
-H "Content-Type: application/json" \
-d '{
"image_url": "https://example.com/photo.jpg",
"background": {
"type": "color",
"value": "#FFFFFF"
}
}'
{
"success": true,
"credits_used": 1,
"credits_remaining": 248,
"result": {
"image_url": "https://cdn.ishotaphoto.com/results/def456.jpg",
"expires_at": "2025-01-08T12:00:00Z"
}
}
/api/v1/detect-faces
Detecta y localiza rostros en imágenes con cuadros delimitadores, puntuaciones de confianza y soporte para múltiples rostros.
curl -X POST https://api.ishotaphoto.com/v1/detect-faces \
-H "Authorization: Bearer isp_your_api_key" \
-H "Content-Type: application/json" \
-d '{
"image_url": "https://example.com/photo.jpg"
}'
{
"success": true,
"credits_used": 1,
"faces": [
{
"confidence": 0.98,
"bounding_box": {
"x": 120, "y": 80,
"width": 200, "height": 250
}
}
]
}
/api/v1/detect-emotions
Analiza expresiones faciales para detectar emociones como felicidad, sorpresa, neutral y más con puntuaciones de confianza.
curl -X POST https://api.ishotaphoto.com/v1/detect-emotions \
-H "Authorization: Bearer isp_your_api_key" \
-H "Content-Type: application/json" \
-d '{
"image_url": "https://example.com/photo.jpg"
}'
{
"success": true,
"credits_used": 1,
"faces": [
{
"emotions": {
"neutral": 0.85,
"happy": 0.10,
"surprised": 0.03,
"sad": 0.02
}
}
]
}
/api/v1/detect-keypoints
Detecta más de 68 puntos de referencia faciales incluyendo ojos, nariz, boca y mandíbula para análisis y alineación facial precisa.
curl -X POST https://api.ishotaphoto.com/v1/detect-keypoints \
-H "Authorization: Bearer isp_your_api_key" \
-H "Content-Type: application/json" \
-d '{
"image_url": "https://example.com/photo.jpg"
}'
{
"success": true,
"credits_used": 1,
"faces": [
{
"keypoints": {
"left_eye": {"x": 180, "y": 120},
"right_eye": {"x": 260, "y": 118},
"nose_tip": {"x": 220, "y": 170},
"mouth_center": {"x": 222, "y": 210}
}
}
]
}
/api/v1/generate-passport-photo
Genera fotos de pasaporte y visa compatibles para más de 100 países. Recorte automático, redimensionamiento y aplicación de especificaciones correctas.
curl -X POST https://api.ishotaphoto.com/v1/generate-passport-photo \
-H "Authorization: Bearer isp_your_api_key" \
-H "Content-Type: application/json" \
-d '{
"image_url": "https://example.com/photo.jpg",
"country_code": "US",
"document_type": "passport"
}'
{
"success": true,
"credits_used": 1,
"result": {
"image_url": "https://cdn.ishotaphoto.com/results/ghi789.jpg",
"dimensions": {"width": 600, "height": 600},
"dpi": 300,
"compliant": true
}
}
/api/v1/validate-photo
Valida fotos contra requisitos oficiales. Verifica dimensiones, fondo, posición del rostro, expresión y más.
curl -X POST https://api.ishotaphoto.com/v1/validate-photo \
-H "Authorization: Bearer isp_your_api_key" \
-H "Content-Type: application/json" \
-d '{
"image_url": "https://example.com/photo.jpg",
"country_code": "US",
"document_type": "passport"
}'
{
"success": true,
"credits_used": 1,
"valid": false,
"checks": {
"face_detected": {"pass": true},
"background": {"pass": false, "reason": "Not white"},
"head_position": {"pass": true},
"expression": {"pass": true, "value": "neutral"}
}
}
/api/v1/enhance-image
Mejora impulsada por IA para brillo, contraste, nitidez y corrección de color. Perfecto para cargas de baja calidad.
curl -X POST https://api.ishotaphoto.com/v1/enhance-image \
-H "Authorization: Bearer isp_your_api_key" \
-H "Content-Type: application/json" \
-d '{
"image_url": "https://example.com/photo.jpg",
"enhancements": ["brightness", "sharpness", "denoise"]
}'
{
"success": true,
"credits_used": 1,
"result": {
"image_url": "https://cdn.ishotaphoto.com/results/jkl012.jpg",
"enhancements_applied": ["brightness", "sharpness", "denoise"],
"expires_at": "2025-01-08T12:00:00Z"
}
}
/api/v1/estimate-head-pose
Detecta la orientación de la cabeza con ángulos de inclinación, giro y rotación. Esencial para verificar fotos frontales.
curl -X POST https://api.ishotaphoto.com/v1/estimate-head-pose \
-H "Authorization: Bearer isp_your_api_key" \
-H "Content-Type: application/json" \
-d '{
"image_url": "https://example.com/photo.jpg"
}'
{
"success": true,
"credits_used": 1,
"faces": [
{
"pose": {
"pitch": 2.5,
"yaw": -1.2,
"roll": 0.8
},
"front_facing": true
}
]
}
1 crédito = 1 llamada API. Sin suscripciones, paga solo por lo que uses.
Creada para desarrolladores, confiada por empresas
Tiempo de respuesta promedio menor a 500ms para la mayoría de operaciones
Compatible con SOC 2 con cifrado de extremo a extremo
Infraestructura confiable con CDN global
Soporte prioritario para clientes empresariales
Contáctanos para obtener tu clave API y comienza a integrar hoy. Planes empresariales personalizados disponibles para necesidades de alto volumen.